I am using the non-fixed header with social icons and additional navigation. I am using the following css to remove the bottom padding:
#header_main .container {
height: 82px !important;
line-height: 82px !important;
}
However the drop down menus still show up in the original location – which is now in my slider. Is there a better way to get rid of that padding so the drop down menus align?
Site: http://www.atlassteelruledie.com/
Thanks!
Hey!
Use this code instead:
#header_main .container, .main_menu ul:first-child > li > a {
height: 82px !important;
line-height: 82px !important;
}
Regards,
Josue
Perfect – thanks!