Help With Inline Layout

Tony Hardy

Well-Known Member
Hey everyone,

I'm busy trying to make the menu, main content container and header of Eye For Illustration fall into line together.

It works perfectly for me on Safari, yet in Mozilla it's a way off.

Here's the relevant code;

Content Container
Code:
#content_container {
    left: 370px;
    margin: 0 0 0 0;
    padding: 50px 0 0 35px;
    position: relative;
    width: 705px;
    z-index: 10;
}

Header
Code:
.header_img {                                              /* To fix in place change to "position:fixed;" */
    margin: 0 auto;
    z-index: 0;
    width: 980px;
}

Nav Container
Code:
.nav_container {
position: absolute;
top: 146px;
left: 130px;
line-height: 185%;
z-index: 12;
}

Cheers
Tony
 
Last edited:
Back
Top