MyBB Community Forums

Full Version: Avatar in user profile is stretched out
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I fix this?
http://thespeedyfeed.com/User-Unknown

Thanks.
in your global.css replace

.pbavatar img { 
width: 75px;
}
with

.pbavatar img { 
width: auto;
height:auto;
}

and in

.pbavatar {
 width: 75px;
}

remove width property and add
display:inline-block;
It didn't work Sad
Did you do those edits, because on opera dragonfly i still can't see those changes ?
(2013-04-12, 09:15 PM)Johnny S Wrote: [ -> ]Did you do those edits, because on opera dragonfly i still can't see those changes ?
I Did it.
[Image: 70de55f87a74f182e0e035c4175b766c.png]
Removing width property would mean that you have to remove width property along with value

width:75px;


and add

display:inline-block;

THIS time REMOVE

width:display

AND ADD

display:inline-block;
Ok I just did that and... it still doesn't work. Sad