Hi
How do I increase the space below the main menu and bottom of header (so the text is in more open white space)?
Regards,
Steve
I dont completely understand what you want. And i’m just a normal user like you.
But if you want to get some spece between the header and the main content you can try to add the following to your quick CSS:
div#main{
padding-top: 140px !important;
}
If you want to get rid of the white space on smaller screens, you have to write it like this and adjust the min-width:
@media only screen and (min-width: 768px) {
div#main{
padding-top: 140px !important;
}
}
Hi!
Thank you for using our theme.
In custom.css or Enfold->Styles->QuickCSS put the following and adjust the value:
.main_menu > div {
height: 55px !important;
}
Cheers!
Günter
Thanks, that’s worked :)) But it’s also cropped (in effect) the top of the slider – you can now see a strip of this behind the (transparent) header. How do I lower the header so they’re aligned again?
Regards,
Steve