Archived topic
Uber Menu Issue
14 replies · Started by Eugen on February 7, 2017
Hi,
I'm trying to integrate Uber menu with Generate press but it won't really work 100%.It shows the mobile menu also I guess.
I hope you can help.
Thank you
Eugen
Hi Eugen,
Try going to Customizer > Layout > Primary Navigation > Slideout Navigation and set it to Disable.
This assumes that you will be using Uber menu for mobile navigation as well.
Let me know if this helps.
Hi leo,
thanks for the reply. The slideout menu was already disabled.
Best regards
Eugen
By any chance you are using a caching plugin? If so it might be good to clear it or disable it during development.
If not can you provide a link to the site?
Hi,
I'm not using a caching plugin yet
The site is not public yet.
Thank you
I deleted the link/password above :)
That menu is actually from Uber menu as well. I would assume there are settings in the plugin to disable that.
If not then try this CSS to hide it:
.ubermenu-responsive-toggle-main.ubermenu-responsive-toggle-align-full {
display: none;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
I would definitely look for the setting in the plugin first though.
Hi,
it's the responsive menu that normally shouldn't be visible on bigger screens. If I turn it off it's gone, but the I don't have my mobile menu anymore.
The same happens when using the css.
I don't know why the mobile menu is showing even though I put it down to 765px.
Are you sure there are no settings within the plugin to turn that off on desktop only?
If not then try this to make it Desktop only:
@media (min-width: 1024px) {
.ubermenu-responsive-toggle-main.ubermenu-responsive-toggle-align-full {
display: none;
}
}
Let me know.
Hi,
it works now, thank you.
However, how can I disable the responsive primary and submenu of generatepress?
You can disable the GP mobile menu like this:
.menu-toggle {
display: none;
}
Then it will use the Ubermenu mobile menu instead.
Hi Tom,
after using the generate press mobile menu still shows.
Any chance you can link me to your site?
You can be aggressive with the CSS and do this:
.main-navigation .menu-toggle {
display: none !important;
}
Hi,
ok, that worked. Thank you.
You're welcome :) Nice site!