Hi there. I would like to increase the padding top and bottom for the logo. Could you shoot me some quick css that would make this happen. Essentially the logo is to close to the top bar.
Hi,
Can you post the link to your website please?
Regards,
Josue
Hi!
You can use this:
#header_main {
padding-top: 20px;
}
#header_main .container, .main_menu ul:first-child > li a {
height: 108px;
line-height: 108px;
}
Cheers!
Ismael
Thanks so much Ismael! Is there an easy way to also increase the bottom padding without moving the menu active line indicator?
Hi!
Please add following code to Quick CSS and adjust as needed
.html_header_top.html_header_sticky.html_large #header_main .container, .html_header_top.html_header_sticky.html_large.html_main_nav_header .main_menu ul:first-child > li a {
height: 126px;
line-height: 116px;
}
Depending on the height, you should adjust the following code as well
.html_header_top.html_header_topbar_active.html_header_sticky.html_large #top #main {
padding-top: 166px;
}
Cheers!
Yigit
Excellent, thanks again for such wonderful support. Would this css be in addition to
#header_main {
padding-top: 20px;
}
#header_main .container, .main_menu ul:first-child > li a {
height: 108px;
line-height: 108px;
}
OR
would I remove the above and just use the.html etc.?