Need help with a quick image adjustment for an avatar border

It'll be because you've used padding, IE is a demanding beast, better to locate css for thread display avatar and use text-align:center (or margin: 0 auto)in the css
If you can link me to the page I can check it and tell you for sure. :)

Thanks for the help :D

Here's a sample page with the frame around the avatar: United States History
 
Yes! Thank you ToDie4! :D

Another IE-only issue with the rank not being centered. But, at least the avatar and frame are showing up perfectly! (y)
 
I wasn't aware this was for a non-XenForo site, so I have moved the thread to off topic.
 
Yes! Thank you ToDie4! :D

Another IE-only issue with the rank not being centered. But, at least the avatar and frame are showing up perfectly! (y)

Very welcome. :)

For the rank image, you have the following tag wrapping the rank image call (IE wont recognise that and isn't meant to be used any more really):
Code:
<center></center>

Replace that with either of the following options, not 100% which will work better (use copy and paste to ensure you get it all right):

Code:
<div style="text-align:center"></div>

Code:
<div style="margin: 0 auto"></div>
 
Back
Top Bottom