Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Reply To: Menu not superimpose over element

Home Forums Older releases 1.0.x Menu not superimpose over element Reply To: Menu not superimpose over element

#2619
admin
Keymaster

OK, try replacing your rule with something like this:

.mi_navbar-fixed-top {
	z-index: 1030;
}
@media screen and (max-width: 772px) {
	.mi_navbar-fixed-top {
		top: 0px;
		border-width: 0px 0px 1px;
		position: fixed;
		right: 0px;
		left: 0px;
		z-index: 1030;
	}
	.mi_navbar-fixed-top .navbar-collapse {
		max-height: 340px;
	}
}

It should, hopefully, fix both issues. If you still have any troubles, please post a link to some kind of live demo that I could test.

Cheers!