Hello,
I was wondering if it was possible to move te main menu to the top op the page? So the main menu is above the logo. My site is: http://www.teddaamen.nl/website Now the menu is beneath my banner, I would like it above the banner. Using the secondary menu is not really an option because it is not so nice as the main manu on the iphone :)
Maybe I can change something in the header.php or so?
Hope you can help!
Sincerely, Niels
Hey Dare2Dream!
You can add the same menu as secondary menu and using custom CSS code you can remove it on mobile and display main menu, only on mobile. Please add following code to Quick CSS in Enfold theme options under General Styling tab
#header_main_alternate { display: none; }
@media only screen and (max-width: 990px) {
#header_meta { display: none; }}
Best regards,
Yigit
Works perfectly! Thanks! 2 other things:
– I can not seem to remove the line under the top navigation bar, it is still visible if I go on mouse over area of the button.
– When I check my site on iphone the icon under which the menu is, is white, no more menu icon (black stripes)
Hope to hear from you! Thanks a Million!
Sincerely, Niels
Hey!
Thank you for the update.
Please add this on Quick CSS or custom.css:
.sub_menu>ul>li:hover>a {
text-decoration: none !important;
}
And this to fix the advance menu toggle:
#advanced_menu_toggle, #advanced_menu_hide {
color: #333333;
}
Regards,
Ismael
Works great! Thanks for your amazing support!