Page 1 of 1

IE 6 - vertical space introduced on anchor rollover

Posted: Thu Mar 27, 2008 12:48 pm
by interplaymedia
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!

Re: IE 6 - vertical space introduced on anchor rollover

Posted: Fri Mar 28, 2008 5:57 pm
by Nullig
It might be here:

Code: Select all

	/* ie6 min-height hack */
	height: auto !important;
	height: 500px;
	/* ie6 end min-height hack */
Have you tried removing either the height: 500px; or the height: auto !important;?
Or perhaps a height: 1%; might work.

Nullig