Click to See Complete Forum and Search --> : Weird problem with footer...
El_Geeko
08-10-2008, 03:42 AM
My footer doesn't appear at the bottom of the page, although I set the height propertys of the html, body and min height of the wrapper that contains the content to 100%. The problem appears in Internet Explorer.
http://www.athletic-preparation.com/index.php
Stylesheet: http://www.athletic-preparation.com/css/site.css
Centauri
08-10-2008, 10:46 AM
IE7 is reading the "expression" part and setting the height explicitly - it does not have the same bug as IE6 where it expands a set height. Get rid of the expression part, and use the star-html hack to target IE6 :#wrapper {
width:820px;
margin: 0 auto;
min-height:100%;
background:transparent url(http://www.athletic-preparation.com/images/mainbg.png) top left repeat-y;
}
* html #wrapper {
height: 100%;
}
El_Geeko
08-10-2008, 11:51 AM
I did that on the main site and it seems to work, but for example,
http://www.athletic-preparation.com/contact.php
Doesn't work; the footer isn't in the right place even though I did the same thing in the contact.css file
http://www.athletic-preparation.com/css/contact.css
:-/
Centauri
08-10-2008, 12:01 PM
Seems to be ok to me - footer comes after the wrapper in IE7 fine.
El_Geeko
08-10-2008, 12:03 PM
Dumb question but where can I see which version of IE I have?
Centauri
08-10-2008, 04:34 PM
On menu bar - Help > About