Log in

View Full Version : Default Profile Pic Not Taking The Size Of Profile Pics in Friendsbit


Wordplay
04-28-2011, 11:11 AM
regular profile pictures are resized perfectly to 60x78.

but the default profile picture shows up as default profile picture size (200x260). how would i make those show up in the friendsbit the same size as profile pictures?

i looked at firebug but apparently they both use image_friend_link, i guess something else is forcing profile pictures to reduce in size, but whatever it is, is not having an effect on the default profile picture.

Lynne
04-28-2011, 03:21 PM
It's the avatar that show up, not the profile picture. Your default CSS should be making sure all the avatars are a certain size:
.member_summary .friends_mini .friends_list li img {
height: 50px;
width: auto;
}

Wordplay
04-28-2011, 04:07 PM
my mistake, avatar then.

i tried adding the code to additional.css, vbulletin.css, and member.css, but it didn't work.

EDIT

it worked after removing .member_summary

thanks again lynne, you're a real life saver!