0

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 Screenshot of working menu bar

With either of these BootStrap plugins enabled, the menu bar is hidden.

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!

1 Answer 1

1

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
  }
Sign up to request clarification or add additional context in comments.

2 Comments

Thanks for that :) I added it in and can now see the menu, but it still doesn't show up in one horizontal line. dev.gapsummit.com/?page_id=2
you need to override the other style rules check what bootstrap has applied to the element in your dev tools. P.S if its only supposed to become a drop down on a small screen size (responive) then either use a media query to adjust your style rules based on screen size or remove the dropdown menu class and apply it with js on resize

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.