The page in question is http://dev.gapsummit.com/?page_id=2
With no Bootstrap plugin enabled, you can see the menu items like so
With either of these BootStrap plugins enabled, the menu bar is hidden.
Easy Bootstrap shortcode
Wordpress Twitter Bootstrap CSS
The menu items are still present in the source file, they are just hidden. If anyone can help me unhide them (point out what css is hiding the element), I would be most grateful!
It is the class .dropdown-menu that bootstrap is picking up. Over-ride the rules for the menu with !important in your own css and your menu will appear.
.dropdown-menu{
display:block !important;
//other style rules with !important
}
Related
I need to remove menu icons or images before admin menu items. Since Squarespace and Wix don't have anything like icons, just a plain menu, people don't like the look of the WordPress menu.
I've tried in css,
#adminmenu div.wp-menu-image {
display: none !important
}
and nothing happens. Any clues how to remove icons like in the New Woocommerce admin menu?
Thanks
Tanzi
How can i design Center logo with nav menu In Wordpress.In Mobile view i need Search icon and Cart icon.and Static navbar needed. Some examples https://biona.co.uk/ http://palkova.in I tried different themes but now work.
I think this kind of nav style is not available in theme. You have use lots of themes to search for this type of navigation style or you have to build custom navigation.
My submenu disappeared all the sudden and doesn't show anymore when I hover over the menu item. I checked the menu section on my WP dashboard and it's there and assigned to show. The submenu still show on mobile device but on full browser the submenu items stopped showing up. I deactivated all the plugins to check if there is a conflict but the event doesn't appear to be plugin related. This is more of a CSS problem that I'm having.
Here's my website: http://www.apcm.ca
My CSS : http://www.apcm.ca/wp-content/themes/apcm/css/style.css?ver=4.6.1
You'll notice that your #header is set to overflow:visible in mobile, and that if you switch back to desktop resolution, the submenu will start working. So all you need to do is add overflow: visible to the #header in all resolutions.
change overflow:hidden to overflow:visible for the section#header
I want to create a horizontal custom menu in wordpress. I've added a custom menu widget to the footer of my site (not online yet) but it displays a vertical bullet list menu. Where can I change that?
I'm using latest wordpress and the Interio theme if that helps any.
I don't know how to edit CSS for custom menu widgets. How do I do this?
You can edit the CSS for any widget in your theme's style.css file. Using your development tool of choice (Chrome dev tools or Firebug), inspect the menu widget (the vertical bullet list menu) and see if you can identify any unique but consistent selectors for that menu. Those will be the selectors you'll use to target this menu and style to your liking.
Have fun!
I solved this problem by using this dropdown menu widget which can also be set to create horizontal menu's :)
I'm having trouble with my nav dropdown menu hiding behind the logo and banner on my site. I've tried changing the z-index of the nav div to 99 and then the header div to 0, but to no avail. I'm having trouble shooting ie since I'm on a mac. You can see the site at www.miles2give.org. I've created a childtheme from wp theme twentytwelve and I think I may have accidentally messed something up along the way. I don't know what code to include or I would.