views:

26

answers:

1

So yeah, like I said, I've spent a few hours trying to fix this bug in the footer that add's an extra 20-30px on to the bottom of the page in IE6 and 7. I've currently set all bottom margins to 0 so as to find what's causing it, I then scoured ie developer tools but came up empty.

Here's the homepage design hosted on my web design playground - Link

Can anyone see the remedy?

A: 

I see:

/** FOOTER **/
#footer {
    margin: 40px 0 0px 0;
    padding: 30px 0 0 0;
    background: url(images/footer.png) no-repeat top center;
    color: #404141;
    font-weight: bold;
    font-size: 11px;
}

Try changing the margin and padding to 0.

rlb.usa
I have no idea how ie6 and 7 works, but removing the padding worked. However, I needed the padding, so that wasn't a solution. Googling for padding bugs in Ie6 and 7 returned a fix that was to simply add display:inline-block; to the css for that element, and it worked. Thanks for the help =)
Qwibble