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 opens underneath some screen items

Home Forums Older releases 0.9.x menu opens underneath some screen items Reply To: menu opens underneath some screen items

#2391
admin
Keymaster

Hi, I believe it’s still a z-index issue but it’s probably caused by some containers that have position: relative applied but no specific z-index set. You can try setting something like:

.jp-interface {
	z-index: 1;
}

and if your main menu is wrapped in any position: relative container, set it something like z-index: 2.

If this doesn’t help, please post some kind of live demo where I could test your exact code.

Cheers!