I want to use pet headshot as an overlay for the pet friends section and have no idea if the headshot even has its own link. Checking elements on user profile led to a deadend:
I've tried this = broke the code:
.friend_pet_image {background-image: url(Legashee); height:60px; width:60px;}
You have to hide the original image by making it 0x0 and then add padding to match the size of your new background image.
.friend_pet_image {
background-image:url();
background-repeat:none;
background-size:60px 60px;
height:0;
width:0;
padding:60px 0 0 60px;
}
ok so that's half the question answered. updated accordingly.
There aren't static headshot links, you can make your own image, or set the padding to the size you want and then use the background-position and background-size properties to get the size and position just right. :)