Hi! I was wondering what declarations I have to input in the css in order to shorten the length between the header and the content.
Here’s the screenshot:
https://www.dropbox.com/s/ezwkwm95l9w9os4/help2.jpg
Thank you!
Hi,
You can decrease the top padding of the main div.
.fixed_header.social_header #main {
padding-top: 110px;
}
Regards,
Ismael
Hey Ismael!! Thanks for the quick reply but it didn’t work :(. I tried
.fixed_header.social_header #main {
padding-top: 110px;
}
and
.fixed_header.social_header #main {
padding-top: 0px;
}
but no response :(
Hey!
Try following code instead:
.fixed_header #main {
padding-top: 60px;
}
and don’t forget to clear the browser cache.
Regards,
Peter