Click to See Complete Forum and Search --> : Help building a webpage (alignment)


Morag2
01-29-2006, 07:21 PM
Okay, I'm working on a webpage, but I'm fairly new to HTML... here is what I have:

http://www.freewebs.com/morag2/

Now as you can see, the section that says "Property Management" is way lower than it should be. That is because I can't right align it on the same line as the little email icon is left align...

how do I have a right and a left aligned item on the same line?

THanks in advance

thewebman
01-29-2006, 10:06 PM
<div style="width: 350px; float: left; text-align: left;">Contact us</div>
<div style="width: 350px; float: right; text-align: right;">Property Management</div>

make sure to use a proper doctype (http://www.alistapart.com/stories/doctype/)

Morag2
01-29-2006, 11:26 PM
Thank you very much.