VinceG / twitter-bootstrap-wizard

This twitter bootstrap plugin builds a wizard out of a formatter tabbable structure. It allows to build a wizard functionality using buttons to go through the different wizard steps and using events allows to hook into each step individually.
MIT License
1.39k stars 676 forks source link

rootwizard stays in front of dropdowns #129

Closed dessalines closed 9 years ago

dessalines commented 9 years ago

Not sure why, but rootwizard always renders in front of dropdown menus. I've tried changing the z-index on .nav, .navbar, .dropdown, and .dropdown menu's, to no avail.

dessalines commented 9 years ago

I've found that this code fixes it, if its any help:

.dropdown, .dropdown-menu {
  z-index:2;
}
.navbar {
  position: static;
  z-index: 1;
}
VinceG commented 9 years ago

thank you. this is a markup issue not something directly related to this plugin as we have CSS changes.