I'm struggling with an issue in IE6. Using either a two- or a three-column layout, with the content divs floated left, my page performs great in FF and IE 7 but breaks in IE 6. Empty space appears between the content divs and the footer. Strangely it doesn't always break. If I refresh the page, the divs return to their correct position. But then when I roll over an image-based anchor in the right-most div, the page breaks again.
The page is on our development server at http://72.249.44.69/~interpla/.
Any suggestions will be gratefully received.
Thanks in advance!
IE 6 - vertical space introduced on anchor rollover
Re: IE 6 - vertical space introduced on anchor rollover
It might be here:
Have you tried removing either the height: 500px; or the height: auto !important;?
Or perhaps a height: 1%; might work.
Nullig
Code: Select all
/* ie6 min-height hack */
height: auto !important;
height: 500px;
/* ie6 end min-height hack */
Or perhaps a height: 1%; might work.
Nullig