Click to See Complete Forum and Search --> : text/position not aligning correctly in IE
riskmod
03-05-2008, 10:21 AM
How can I fix this:
http://www.icgd.net/text.html
If you look at the footer the 2 <p> are fine in Safari and FF but in IE its not correct...any ideas...look at my footer code on the styles.
Thanks.
stalebrew
03-05-2008, 10:53 AM
add clear:both to the .right class
stalebrew
03-05-2008, 10:59 AM
Also I would just remove the padding on your .right class, and add float:none.
Then add text-align:center to your #footer.
#footer {
clear: both;
text-align:center;
}
#footer p {
float: left;
font-family: Verdana, sans-serif;
font-size: 10px;
color: #000;
padding: 6px 0 6px 0;
}
#footer p.right {
float:none;
clear:both;
}
riskmod
03-05-2008, 01:27 PM
thanks..still got some issues so what I did is run a javascript supportbrowser runtime to run the style you gave me (technically just did padding) for ie.