Z-index problem

I have this cloverleaf in the background and I cannot get it the correct position in the content area. The header is fine.

http://4leroujlu7.thelostmenu.com/

Hi,
You have an error in your syntax. You used a colon at the end of position:relative on your .container rules.

[B].container[/B]
{
width:890px;
margin:0 auto;
position:relativ[B][COLOR=Red]e:[/COLOR][/B][COLOR=Red]<----[/COLOR]
z-index: 3;
}

You need to use a semicolon instead. :slight_smile:

[B].container[/B]{
width:890px;
margin:0 auto;
position:relativ[B][COLOR=Blue]e;[/COLOR][/B]
z-index: 3;
}

Thanks. I increased my browser font size and a whole new world opened up. :slight_smile: