Hi,
My website link is http://www.deadandwalking.com
as you can see my two divs won't align next to eachother as the second div starts below the first one. How would I get the second div box to be placed next to the first one horizontally?
Here is my css for these divs (box 1 on the left is content2 and the right is content3)
My website link is http://www.deadandwalking.com
as you can see my two divs won't align next to eachother as the second div starts below the first one. How would I get the second div box to be placed next to the first one horizontally?
Here is my css for these divs (box 1 on the left is content2 and the right is content3)
Code:
#content2{
float:left;
width:500px;
font-size:0.9em;
padding:20px 0 0 20px;
color:#cccccc;
background:#0a0a0a;
border:1px solid #999999;
float:left;
}
#content3{
float:right;
width:450px;
font-size:0.9em;
padding:20px 0 0 20px;
color:#cccccc;
background:#0a0a0a;
border:1px solid #999999;
clear:both;
margin-left:500px;
}







