Page 1 of 1

Changing Layout Grid Z Index

Posted: Thu Oct 24, 2024 12:06 pm
by mlsto
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

Re: Changing Layout Grid Z Index

Posted: Thu Oct 24, 2024 12:24 pm
by crispy68
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

Posted: Thu Oct 24, 2024 1:44 pm
by mlsto
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>
Appreciate this very much.

Thanks