Home › Forums › CSS › Sticky Footer and IE7 Problems › Re: Sticky Footer and IE7 Problems
That’s very strange. I’m running it in Firefox on the Mac and it works fine for me.
margin:0;
padding:0;
}
html, body, #wrap{
height:100%;
}
html, bodu{
background:#111111;
width:100%;
}
bodu > #wrap{
height:auto;
min-height:100%;
}
#wrap{
position:relative;
margin-bottom:-20px;
}
#main{
width:1000px;
margin:10px auto 0px auto;
}
#footer{
background:url(‘images/footer_fade1.png’) repeat-x;
height:190px;
width:100%;
clear:both;
margin-top:-190px;
}
#footer_content{
height:190px;
width:980px;
margin:0 auto;
}
#left_panel{
width:300px;
float:left;
padding:10px 10px 0px 10px;
}
#right_panel{
width:300px;
float:right;
padding:10px 10px 0px 10px;
}
#middle_panel{
width:300px;
margin:0 auto;
padding:10px 10px 0px 10px;
}
#footer_content h1{
color:#dfa438;
font-family:Georgia, “Times New Roman”, Times, serif;
font-size:18px;
font-style:italic;
display:block;
font-weight:100;
padding-bottom:3px;
border-bottom:#dfa438 dotted 1px;
}
#footer_content p{
color:#dfa438;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
margin:10px 0px 0px 5px;
}
#footer_content a:link,
#footer_content a:visited,
#footer_content a:active{
color:#dfa438;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
text-decoration:underline;
}
#footer_content ul{
list-style:outside;
line-height:120%;
margin:5px 0px 0px 20px;
}
#footer_content li{
color:#dfa438;
}
/* Clear Fix */
.clearfix:after{
content:”.”;
display:block;
height:0;
clear:both;
visibility:hidden;
}
.clearfix{
display:inline-block;
}
/* Hides from IE-mac */
* html .clearfix{
height:1%;
}
.clearfix{
display: block;
}
That’s the CSS I used for the body and footer. The HTML I was using is set up like this.