Al John
Al John

Reputation: 900

Links with dropdown menus don't show up, links without dropdown menus still work

Somehow the links with dropdown menus no longer show a dropdown when you mouse over. The links without any dropdowns still work fine. It happens on this website with the links on the green navbar and I have no clue what could possibly cause this to happen. I have not changed a single script on the website except for some CSS. I haven't changed any classes or ID's either and it happens on all browsers. If this helps, I'm using OpenCart which uses a theme based on bootstrap.

Upvotes: 0

Views: 48

Answers (2)

Curtis Crentsil
Curtis Crentsil

Reputation: 501

remove the overflow from the navbar

.navbar {
  max-width: 100%;
   /*overflow-x: hidden;*/
}

if it does not work add z-index to the list like so

.listclass{
z-index: 2;
}

Upvotes: 0

Mehul Davara
Mehul Davara

Reputation: 339

Please remove overflow-x: hidden; in line number 397 in stylesheet.css

.navbar {
  max-width: 100%;
  /* overflow-x: hidden; */
}

Upvotes: 3

Related Questions