Hi there,I have a "wee" problem.
I have edited the menu css to give it extra height to fit my logo and also to set a top margin on the menu links to horizontally align it with the logo by adding the following code:
/* MODIFY THE HEIGHT OF THE LOGO BANNER SECTION TO ACCOMODATE THE LOGO */
div.logo h1 a, div.logo a {height: 115px!important;}
/* MODIFY THE TOP MARGIN OF THE MAIN MENU SO IT LINES UP WITH LOGO */
div.menu_wrapper {margin-top: 25px}
Is there anything I can do to modify the sticky menu to move the menu links up around 10-15px or so?
Thanks
Comments
#Top_bar:not(.is-sticky) { your code here }This means that css will be applied not for sticky menu.#Top_bar #logo { height: 110px; }If you want, you can also move menu, cart and search so can sit in the same line as logo. And this can be done with below css:#Top_bar .menu_wrapper { margin-top: 20px; }BTW We do not use Polish language on this forum.header-classic #Top_bar .top_bar_right { top: 20px; }
About sticky menu, if above css applied for sticky as well, then use below css before:
#Top_bar:not(.is-sticky) {.top_bar_right { top: 20px; }
.menu_wrapper { margin-top: 20px; }
}
#Top_bar { height: 150px; }#Top_bar #logo { height: 110px; }