Dropdown menu hidden by slideshow

Permalink
Why is the 2nd and 3rd levels of my menu hidden by the slideshow block on my homepage?

If I give the menu a z-index then I can't add an autonav block.

trixiemay
 
ronyDdeveloper replied on at Permalink Reply
ronyDdeveloper
You can add the z-index inline along with a condition.

only allow the z-index while the page is not in edit mode.
<?php
$c = Page::getCurrentPage();
if(!$c->isEditMode()){
   //css goes here....
}
?>


Rony