ismail vittal
ismail vittal

Reputation: 175

IE - footer text issue

I am facing the following issue in IE7 enter image description here

Whereas in Chrome, FF and Opera it looks fine enter image description here

Can anyone figure out why I am getting this issue, last few characters coming down to the div

#footer
{
bottom:0;
clear:both;
background: url("images/footer.png") repeat-x #8DC63F;
position:relative;
float:left;
width:100%;
}


.footer-text
{
text-align:center;
font-family:'Tahoma';
font-size:10pt;
color: #000000;
top:20px;
margin:10px auto;
}



 <div id="footer">
 <p class="footer-text">Home | Services | About Us | Products | Contact Us</p>
 <p class="footer-text">2011 &copy; All Rights Reserved.</p>  
 </div>

Upvotes: 0

Views: 66

Answers (1)

Ashkan Mobayen Khiabani
Ashkan Mobayen Khiabani

Reputation: 34152

remove the float style from the footer and add text-align:center; to the footer

Upvotes: 1

Related Questions