Docking layer menu issue

All WYSIWYG Web Builder support issues that are not covered in the forums below.
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
Post Reply
Weynand
 
 
Posts: 10
Joined: Wed Feb 26, 2020 3:03 pm

Docking layer menu issue

Post by Weynand »

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
User avatar
crispy68
 
 
Posts: 3056
Joined: Thu Oct 23, 2014 12:43 am
Location: Acworth, GA
Contact:

Re: Docking layer menu issue

Post by crispy68 »

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.
Weynand
 
 
Posts: 10
Joined: Wed Feb 26, 2020 3:03 pm

Re: Docking layer menu issue

Post by Weynand »

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.
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.

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?
User avatar
Pablo
 
Posts: 23449
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Docking layer menu issue

Post by Pablo »

To be able to help you, I need to see what you have done.
Do you have a demo project?
Weynand
 
 
Posts: 10
Joined: Wed Feb 26, 2020 3:03 pm

Re: Docking layer menu issue

Post by Weynand »

Pablo 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?
Here you are https://goalvision.nl/demo_project.zip

Thanks in advance
User avatar
Pablo
 
Posts: 23449
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Docking layer menu issue

Post by Pablo »

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:

Code: Select all

<style>
#nav_menu
{
   z-index: 9999 !important;
}
</style>
This makes sure the layer is always on top.
Weynand
 
 
Posts: 10
Joined: Wed Feb 26, 2020 3:03 pm

Re: Docking layer menu issue

Post by Weynand »

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:

Code: Select all

<style>
#nav_menu
{
   z-index: 9999 !important;
}
</style>
This makes sure the layer is always on top.
Thank you so much for the speedy reply!
Post Reply