rc69, on Oct 8 2005, 08:49 PM, said:
A link to the actual source so we can see exactly what you're doing would be nice. But other then that, try floating the middle one left.
I also hear the CSS section of this site has tons of tutorials for 3 column CSS layouts... run through those and see if you can get any ideas.
ive had a look thorugh tutorials i cant seem to find anything. a few have given me some ideas but to no avail.
unfortuantely i have not got it online atm, but here is the relevant code i have:
css:
Quote
#head-container{
margin: auto;
width: 709px;
height: 100px;
background-color: white;
color: black;
}
#head-bar{
margin: auto;
width: 709px;
height: 19px;
color: black;
background: url("images/head-bar.gif");
}
#head-content1{
margin: auto;
width: 253px;
height: 67px;
color: black;
background: url("images/head-content1.gif");
float: left;
}
#head-content2{
margin: auto;
width: 297px;
height: 67px;
color: black;
background: url("images/head-content2.gif");
}
#head-content3{
margin: auto;
width: 159px;
height: 67px;
color: black;
background: url("images/head-content3.gif");
float: right;
}
#head-bottom{
margin: auto;
width: 709px;
height: 14px;
color: black;
background: url("images/head-bottom.gif");
}
html:
Quote
<div id="head-container">
<div id="head-bar"></div>
<div id="head-content1"></div>
<div id="head-content2"></div>
<div id="head-content3"></div>
<div id="head-bottom"></div>
</div>