Plugin Support
Gabor
(@nextendweb_gabor)
Hi @tirahwawas!
The problem with your menu is, that on your website the z-indexes are not specified, so the browser doesn’t know which part should be in front of the other. You can fix it with this CSS code:
header{
position:relative;
z-index:100;
}
#content{
position:relative;
z-index:0;
}
to have the header in a high position, while the content could stay on the 0 z-index position. If you don’t have a good place to put css codes, you could use a plugin like this one:
https://wordpress.org/plugins/simple-css/
which will create an option for you in the WP left admin menu’s Appearance -> Simple CSS.