Page 1 of 1

Space between the header and the title

Posted: Wed Nov 06, 2019 1:35 pm
by jgmvdm
I use template fhs-left-right at http://www.la-vie-en-france.nl/

How can I make the space between the header and the title smaller

[ external image ]

Re: Space between the header and the title

Posted: Wed Nov 06, 2019 1:57 pm
by frase
jgmvdm wrote:
Wed Nov 06, 2019 1:35 pm
How can I make the space between the header and the title smaller
Do you mean the distance between the black header and the first heading? ("Een opknapper kopen in Frankrijk?")
If so, then it's very easy:
stylesheet.css line 314:

Code: Select all

#main {
	max-width: 980px;
	margin: 5em auto;
	overflow: auto;
	padding: 1em;
	min-height: 100vh;
}
margin: 5em auto : You can reduce that.

Re: Space between the header and the title

Posted: Wed Nov 06, 2019 3:08 pm
by jgmvdm
It works, many thanks