Tagged: Fixed Header, sub-menu
Hi, nice theme. I have fixed header with social icons and add menu. I was able to make my logo taller by using the following css .social_header #header_main .container {
height: 160px;
line-height: 160px;
}
And it shrinks down when I scroll nicely.
But the sub menu dropdown now displays too far from the main menu (ie. 160px) before scrolling. How can i keep the tall logo. but a shorter distance from the menu to the submenu?
Thanks
Hi,
You need to pull back the menu the same number of pixels you used to change the height to 160px
Please use this css, just play with the numbers a little:
.main_menu ul:first-child >li > ul {
top: 20px;
}
Thanks,
Nick