WPIntell

Source evidence

z-index problem

fullscreen Menu Β· support Β· 2016-05-23T15:20:00+00:00

complaintsentiment
mediumseverity
0.8relevance
3replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

7 / 29 rows with source links

24.1% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

22 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
moddersnuit unresolved
I use this cool plugin with rev-slider. When the overlay-menu is closed the menu-items are hidden but I can still click on the hidden locations . How can i fix that? Maybe a toggle z-index of the menu div when the overlay is closed. https://wordpress.org/plugins/fullscreen-menu/ I have the same issue, but I do not believe the plugin is actively developed any more, so doubt whether a reply from the developer will be forthcoming πŸ™ I fixed it myself with some css add this to your custom css: .overlay ul li { display: none; height: 20%; height: calc(100% / 5); min-height: 54px; } .open.overlay ul li { display: block; } Let’s update this plugin ourself πŸ™‚ some extra css to make the links animate! li { display: inline-block; position: relative; padding-bottom: 3px; margin-right: 10px; } li:last-child { margin-right: 0; } li:after { content: ”; display: block; margin: auto; height: 3px; width: 0px; background: transparent; transition: width .5s ease, background-color .5s ease; } li:hover:after { width: 100%; background: #fff; }

Comments

3 shown
Craig 2016-05-26T14:17:00+00:00

I have the same issue, but I do not believe the plugin is actively developed any more, so doubt whether a reply from the developer will be forthcoming πŸ™

moddersnuit 2016-05-26T14:21:00+00:00

I fixed it myself with some css add this to your custom css: .overlay ul li { display: none; height: 20%; height: calc(100% / 5); min-height: 54px; } .open.overlay ul li { display: block; }

moddersnuit 2016-05-26T14:27:00+00:00

Let’s update this plugin ourself πŸ™‚ some extra css to make the links animate! li { display: inline-block; position: relative; padding-bottom: 3px; margin-right: 10px; } li:last-child { margin-right: 0; } li:after { content: ”; display: block; margin: auto; height: 3px; width: 0px; background: transparent; transition: width .5s ease, background-color .5s ease; } li:hover:after { width: 100%; background: #fff; }