Need help with a quick image adjustment for an avatar border

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)
 
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>
 
Top Bottom