I need another set of eyes to look this over. I can't seem to get the three columns to work properly with the product listing at the bottom of the page. Here is the CSS;
#productbox{
width:666px;
background-image:url(../slices/item-bkg.png);
background-repeat:no-repeat;
height:173px;
}
.productimage {
float: left;
width: 100px;
margin-left: 0px;
padding:20px;
}
.producttext {
float: left;
width:250;
margin: 0 100px 0 100px;
font:Arial, Helvetica, sans-serif;
font-size:12px;
}
.productprice{
float: left;
width: 100px;
margin-left: -350px;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#01204b;
}
Here is the HTML:
<div id="productbox">
<div class="productimage"><img src="images/product-home-internet.png"></div>
<div class="producttext"><span class="orangetitlelg">Fast Home Internet</span><br><br>
Fast Home Internet gives you more speed. This plan is ideal for online shopping, sending photos or even downloading
music. You'll connect at download speeds of 3Mbps and upload speeds of 500Kbps**. Usage is unlimited.<br><br>
$35 activation fee (waived with 2 year sign up).
</div>
<div class="productprice"><span class="productnumber">$30</span>/month<br>
<a href="contactus.php" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Image6','','slices/learnmore-on.png',1)"><img src="slices/learnmore-off.png" name="Image6" width="121" height="50" border="0"></a></div>
</div>
Any help would be very much appreciated.