Hello
Trying to change the z index on a layout grid I have for a header but notice cannot edit the html only add to it, the navigation bar drop down seems to be coming below the header meaning the header is on top.
Any way to change this or add a z index property.
Thank you
Changing Layout Grid Z Index
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: Changing Layout Grid Z Index
You will have to add some custom CSS to make this happen. You can add it to page html or html object.
Code: Select all
<style>
#wb_LayoutGrid1{z-index:10000;}
</style>
Re: Changing Layout Grid Z Index
Appreciate this very much.crispy68 wrote: ↑Thu Oct 24, 2024 12:24 pm You will have to add some custom CSS to make this happen. You can add it to page html or html object.
Code: Select all
<style> #wb_LayoutGrid1{z-index:10000;} </style>
Thanks