Arghhh, I am trying to put 3 divs side by side like:
***********************
*---newslogo----*----------*
**************--rightside-*
*---newstext----*-----------*
************************
*--------footer--------------*
************************
But it turns out like:

The footer is in red, as you can see its not at the bottom, and the rightside doesn't seem to line up...
CSS:
HTML:
Can anyone help?
Thanks!
***********************
*---newslogo----*----------*
**************--rightside-*
*---newstext----*-----------*
************************
*--------footer--------------*
************************
But it turns out like:

The footer is in red, as you can see its not at the bottom, and the rightside doesn't seem to line up...
CSS:
PHP:
#footer {
background-image:url(images/foldedbottom.png);
background-repeat:no-repeat;
width:760px;
height:26px;
}
#homecontainer {
width:730px;
margin-right:30px;
}
#newslogo {
background-image:url(images/pages/news.png);
background-repeat:no-repeat;
background-color:#FFFFFF;
width:480px;
height:40px;
float:left;
}
#newstext {
background-color:#FFFFFF;
width:450px;
margin-left:30px;
float:left;
border-left:solid #0066cc;
border-width:1px;
}
#rightside {
width:250px;
vertical-align:top;
background-color:#FFFFFF;
float:right;
}
HTML:
PHP:
<div id="homecontainer"><div id="rightside">text2<br />sdfsd</div>
<div id="newslogo"></div>
<div id="newstext">text</div>
</div>
<div class="spacer"></div>
<div id="footer"></div>
Can anyone help?
Thanks!