Click to See Complete Forum and Search --> : Background / Spacing problem in IE


Wheels
11-14-2005, 04:21 PM
View this page in IE and FF

http://www.1unitedproperties.com/new/buyers_main.html

The body background doesn't stretch properly in IE and there's a space between the footer and the body. Any ideas?

Ultimater
11-14-2005, 04:42 PM
Put clear:both in place of float:left

.footer {
clear:both;
background: url('images/footer_bg.jpg') no-repeat bottom;
width: 770px;
height: 25px;
}

Wheels
11-14-2005, 05:17 PM
cool, that fixed the footer problem.

any ideas for the background? it still has a white space below the left nav.

Ultimater
11-14-2005, 06:35 PM
Put the footer DIV within the body_wrapper and use the CSS correction in my last post.

<!-- BODY -->
<div id="body_wrapper">

<img src="images/header_happycouple.jpg" border=0 width=590 alt="">
<div class="body_main">
<div class="body_header"><p>Buyer Resources</p></div>
<p>If you are considering buying a home, clicking on any of the links to the left will provide you with a wealth of information specifically aimed towards home buying. Feel free to utilize the information and consider this page your personal home buying resource center.</p>
<p>To begin searching for your next home, please <a href=find_home.asp>Click Here</a>. If you need any further assistance, please feel free to <a href=contact.asp>Contact</a> Us directly.</p>

<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p></div>
</div>
<div class="footer"></div>
<!-- END BODY -->
</div>

Wheels
11-14-2005, 08:54 PM
much obliged sir