Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Nav Menu

#93734
TheDoc
Member

You need to add position relative if you’re going to use z-index. You’ve replaced the z-index instead of adding to it.

Should be:

.home
{
background: #6AA63B url('Images/home.jpg') top left no-repeat;
position: relative;
z-index: 100;
}