Code:
<body>
<div id="container">
<div id="logo">
<img src="images/logo.png" alt="Apex" />
</div>
<div id="nav">
<div id="nav_l"></div>
<div id="nav_c"></div>
<div id="nav_r"></div>
</div>
</div>
</body>
<div id="container">
<div id="logo">
<img src="images/logo.png" alt="Apex" />
</div>
<div id="nav">
<div id="nav_l"></div>
<div id="nav_c"></div>
<div id="nav_r"></div>
</div>
</div>
</body>
And the CSS:
Code:
#container {
margin-left:auto;
margin-right:auto;
width:70%;
}
#logo {
margin-top:10px;
margin-left:10px;
}
#nav {
height:32px;
margin-top:10px;
width:100%;
}
#nav_c {
background-image:url(images/nav.png);
background-repeat:repeat-x;
height:32px;
margin-left:8px;
margin-right:8px;
width:100%;
}
#nav_l {
background-image:url(images/nav_l.png);
background-repeat:no-repeat;
display:inline;
float:left;
height:32px;
width:8px;
}
#nav_r {
background-image:url(images/nav_r.png);
background-repeat:no-repeat;
display:inline;
float:right;
height:32px;
width:8px;
}
margin-left:auto;
margin-right:auto;
width:70%;
}
#logo {
margin-top:10px;
margin-left:10px;
}
#nav {
height:32px;
margin-top:10px;
width:100%;
}
#nav_c {
background-image:url(images/nav.png);
background-repeat:repeat-x;
height:32px;
margin-left:8px;
margin-right:8px;
width:100%;
}
#nav_l {
background-image:url(images/nav_l.png);
background-repeat:no-repeat;
display:inline;
float:left;
height:32px;
width:8px;
}
#nav_r {
background-image:url(images/nav_r.png);
background-repeat:no-repeat;
display:inline;
float:right;
height:32px;
width:8px;
}
Help is appreciated.









Total Members: 914