Reputation: 175
I am facing the following issue in IE7
Whereas in Chrome, FF and Opera it looks fine
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 © All Rights Reserved.</p>
</div>
Upvotes: 0
Views: 66
Reputation: 34152
remove the float style from the footer and add text-align:center;
to the footer
Upvotes: 1