Page 1 of 1
Layout Grid & CSS Menu
Posted: Sat Apr 12, 2025 8:39 pm
by bjlolmaugh
If I have 2 rows of CSS Menu, and I insert them into a Layout Grid, how do I get the top row to display on top?
When I preview the page, the top layer CSS always shows behind the bottom CSS Menu row.

Re: Layout Grid & CSS Menu
Posted: Sat Apr 12, 2025 11:44 pm
by crispy68
You can some simple CSS like such between the <head> tags via an html object or page html:
Code: Select all
<style>
#wb_CssMenu1{z-index: 9999 !important;}
</style>
Change 'CssMenu1' to match the ID of your first (top) menu.
Re: Layout Grid & CSS Menu
Posted: Sun Apr 13, 2025 2:03 pm
by bjlolmaugh
crispy68 wrote: Sat Apr 12, 2025 11:44 pm
You can some simple CSS like such between the <head> tags via an html object or page html:
Code: Select all
<style>
#wb_CssMenu1{z-index: 9999 !important;}
</style>
Change 'CssMenu1' to match the ID of your first (top) menu.
Thank you!