Conversation
supportI 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; }
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; }