In the stylesmenutest.css line around line 50 you can add a z-index like this:
Code:
ul.pureCssMenu ul{
width:164.85px;
z-index: 10;
}
that should make the menu stay in front of the image
The css you have for div.one should work. I think the problem is that you have an html comment right above that rule. html comments <!-- --> are not allowed in css files. If you need a comment you can use this:
/* css comment */
this will work in css and also in javascript files
Anyway, try to remove the html comment and see what happens.
Bookmarks