Forum Moderators: not2easy
<snip>
and the css file is at:
<snip>
please let me know if there is any way I can get it to line up!
[edited by: Woz at 1:28 pm (utc) on Aug. 4, 2003]
[edit reason] No URLs please, see TOS#13 [/edit]
Put snippets of your html code and cssin your post for people to look at your problem.
Have you purposely included the header, bar, title, nav and bar2 divs in the body div? If not - this may solve your order problem. On IE6 with Win 98se, both bars go right across the page in a straight line.
Jools
<div id="nav">
<div id="bar2">
<p class="l"><span>¦</span></p>
Navigation
<p class="r"><span>¦</span></p>
<p class="link"><a href="http://example.com/folder/">My Page</a></p>
</div>
</div>
and this is the CSS for this:
p.l {
background: transparent url('images/b_left.gif') no-repeat top;
width: 7px;
height: 15px;
float: left;
margin: 0px;
}
p.r {
background: transparent url('images/b_right.gif') no-repeat right top;
color: black;
width: 7px;
height: 15px;
margin: 0px;
padding: 0px;
float: right;
}
span {
display: none;
}
#nav {
position: absolute;
top: 69px;
height: 15px;
width: 100%;
padding: 0px;
margin: 0px;
}
#bar2 {
background: transparent url('images/barheader_bg.gif') repeat-x top;
color: #AAAAAA;
font-size: 11px;
width: 100%;
height: 15px;
font-weight: bold;
margin: 0px;
padding: 0px;
}
#bar2 p.link {
background: transparent url('images/b_yellow2.gif') no-repeat right top;
color: #444444;
width: 146px;
height: 15px;
padding: 0px;
margin: 0px;
float: right;
text-align: right;
}
#bar2 p.link a {
background: transparent;
color: #444444;
text-transform: lowercase;
text-align: right;
float: right;
}
#bar2 p.link a:hover {
background: transparent;
color: #444444;
}
[edited by: Woz at 11:41 pm (utc) on Aug. 4, 2003]
[edit reason] examplified code [/edit]