> Hi all. I'm trying to update one of my websites in CSS. > The website in question is http://www.highlandchurch.org > I've got everything on the website figured out except the header. I > can't figure out how to get one image on the left, and one image on > the right with text below it. In a table it would look like: Try using a container div with overflow: auto (to contain the float) and float one image right, one image left inside. Something like this: <div id="container" style="overflow: auto;"> <div id="image1" style="float: left;"> <img src="image1.png" alt="image1"> </div> <div id="image2" style="float: right;"> <img src="image2.png" alt="image2"> </div> </div>
Ricky ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/