Avada › Forums › Community Forum › Secondary top menu on mobile
-
AuthorPosts
-
Hi, the site i’m working on has a Main navigation menu + a Secondary top menu.
Web it’s all working fine, but when it comes to mobile, the Main menu turns into a burger menu (And i’m ok with that), but the Secondary top menu just breaks in 2 or more rows and it’s not how i want it to be.How can i solve this?
Can it go in the burger menu too?
Can i hide it and create a new mobile only menu with the content from both the menus together?Here’s an image to help you understand the situation:
https://imgur.com/a/vkB5CU6Thank you for your time 🙂
Hi I have these same isuue, die you find a solution?
Thanks ahead for replyingIndeed, I have the same! Would like a solution.
Use classic option for the top menu from theme options to fix the issue.
wp-admin>>avada >>theme options>>menu>>mobile menu>>mobile menu design styleHi, Indeed, I have the same!
Anyone solve this? Same issue here
Anyone solve this? Man it’s driving me crazy.
I recommend creating a new mobile menu, with all the menu items you want in it and then assign it to the “Mobile Navigation” section in WP Admin > Appearance > Menus. Next you should hide either the whole secondary header, or just the secondary menu items. If you have other content in the secondary header, like a phone number or social icons, you may just want to only hide the errant menu.
To do this, first go to Avada Theme Options > Responsive > “Header Responsive Breakpoint” and get the pixel number it’s set to (for this example we’ll say 1235). Next, open your child theme “styles.css”, and add the following:
@media screen and (max-width: 1235px) { nav.fusion-secondary-menu { display: none; } }
The above will hide just the secondary menu at that breakpoint – Alternatively, you can hide the whole secondary header:
@media screen and (max-width: 1235px) { div.fusion-secondary-header { display: none; } }
Hi,
I have tried with the css code above; however, still, the secondary header is visible. How can I fix this issue? Support on this will be highly appreciated. I added the css inside avada style.css file
Thanks
The CSS worked for me, applied in theme options CSS box…thank you!
-
AuthorPosts
- You must be logged in to reply to this topic.