Reputation: 900
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
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
Reputation: 339
Please remove overflow-x: hidden; in line number 397 in stylesheet.css
.navbar {
max-width: 100%;
/* overflow-x: hidden; */
}
Upvotes: 3