Hi.
Pls have a look @ my website in in progress.... https://goalvision.nl I made a masterpage with a hamburger menu with an 'onclick' event to show the nav menu. The nav menu is a layer in docklayer mode.
When scrolling the page, certain objects (like the card object) move OVER the nav menu. Other objects (like text and images) move UNDER the menu. I want every object to move under the nav menu.
Pls test with a small viewport the main page and the webshop page (ECWID), click the menu, keep the menu open, scroll the page and you can see what happens.
I tried a lot of different settings, but was not able to find a solution.
Anyone?
Regards, Weynand
Docking layer menu issue
Forum rules
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Re: Docking layer menu issue
Make sure your docking layer is 'moved to the front' which will give it the highest z-index. It should appear at the bottom in your Object manager.
Re: Docking layer menu issue
The docking layer is at the bottom on the master page. When I replace on the (index) page the card object with a text object (on exactly the same object position), the text will move behind the docking layer.crispy68 wrote: Tue Mar 17, 2020 12:48 am Make sure your docking layer is 'moved to the front' which will give it the highest z-index. It should appear at the bottom in your Object manager.
I just tested it in a different way: I copied the docking layer from the master page to the index page, changed ID etc. I made sure it was the last object on the page. However, the problem with the card object remains the same (card object is part of a layout grid). IS this a typical behavior of a card?
Any suggestions? Is an alternative available for the docking layer menu effect?
Re: Docking layer menu issue
To be able to help you, I need to see what you have done.
Do you have a demo project?
Do you have a demo project?
Re: Docking layer menu issue
Here you are https://goalvision.nl/demo_project.zipPablo wrote: Tue Mar 17, 2020 9:57 am To be able to help you, I need to see what you have done.
Do you have a demo project?
Thanks in advance
Re: Docking layer menu issue
A master page is always behind all other content (by design)
So, the quickest way to solve this is by adding to code to Page HTML->Between head tags:
This makes sure the layer is always on top.
So, the quickest way to solve this is by adding to code to Page HTML->Between head tags:
Code: Select all
<style>
#nav_menu
{
z-index: 9999 !important;
}
</style>
Re: Docking layer menu issue
Thank you so much for the speedy reply!Pablo wrote: Tue Mar 17, 2020 11:00 am A master page is always behind all other content (by design)
So, the quickest way to solve this is by adding to code to Page HTML->Between head tags:This makes sure the layer is always on top.Code: Select all
<style> #nav_menu { z-index: 9999 !important; } </style>