Hello,
This issue is caused by the slideshow plugin/script that you have on that page.
For some reason the slideshow slides have a CSS z-index of 100, while the dropdown menu lists in the theme have a z-index of 99. 100 beats 99, so it goes over the menu.
A simple fix would be to either increase the z-index in the theme or decrease the one for the plugin. Go to Appearance > Customize > Additional CSS and add ONLY ONE of these two options:
#container .sf-menu ul { z-index: 101; }
.sow-slider-base ul.sow-slider-images li.sow-slider-image.sow-slider-image-cover { z-index: 10 !important;
Best regards,
Dumitru B.
hi Dumitru, thanks ! I tried both but unfortunately no result… you see another option ?
Hello,
That is a bit odd.
Try adding this code too, it should do the trick:
#site-masthead {z-index: 110; }
Best regards,
Dumitru B.
super ! now it works fine, thanks a lot !!