Marcelo Wolfgang wrote:
> So, I'm asking for advice on how can I make the footer of my website 
> to be fixed on the bottom in IE6 ( it works well on other browsers ).
> http://portfolio.grillo.tk/2007

If you're not bothered by IE-expressions, then the following will work.

Replace _everything_ you're serving IE6 in the Conditional Comment, with
the following...

<!--[if lte IE 6]>
<style type="text/css">

#footer {position: absolute; margin-left:-64px;
top:expression(eval(document.compatMode &&
document.compatMode=='CSS1Compat') ?
documentElement.scrollTop
+(documentElement.clientHeight-this.clientHeight)
: document.body.scrollTop
+(document.body.clientHeight-this.clientHeight)); }

</style>
<![endif]-->

...and IE6 will "fix it" just fine.
You can delete the <div id="ie_footer">, since IE6 uses the same footer
as the other browsers with this solution.

The solution is described in some details here...
<http://www.gunlaug.no/contents/wd_additions_15.html>

I also turned the footer-image into an 8-bit png, to avoid
transparency-problems in IE6.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to