Forum Moderators: not2easy
However, with the footer, I cannot get it do display within the container div correctly. The code below works fine on its own, however when added to the whole page, the footer is outside the container. Removing the float's will bring the footer inside the container, but they will not be aligned anymore.
Is there something I should add/change to my container div to allow for the float's?
<html>
<head>
<style type="text/css">
#footer {position:relative;display:block;}
#address {float:left;text-align: left;}
#phone {float:right;text-align:right;}
</style>
</head>
<body>
<div id="footer">
<div id="address">Address goes here</div>
<div id="phone">Phone over here</div>
</div>
</body>
</html>
Thanks...