I saw someone mention being frustrated with how their profile picture would automatically stretch to become square.
I’ve only been able to test this on my phone, so it may be invalid for desktop use (if so, let me know, I will reluctantly get on my laptop and fix it)
:
.profile .left img:not(.contacting img):not(.contact img),
.profile-info .avatar img,
img[src*="uploads/gallery"]:not([src*="icon"]),
img[src*="avatar"]:not(.contacting img) {
height: 100px !important;
width: auto !important;
max-width: none !important;
min-width: 0 !important;
aspect-ratio: auto !important;
object-fit: contain !important;
}
.profile .left .avatar,
.profile-info .avatar {
height: 100px !important;
width: auto !important;
display: inline-block !important;
}
.contacting img,
.contact img,
td.contacting table img,
table[id*="contact"] img {
width: auto !important;
height: auto !important;
max-width: 100% !important;
aspect-ratio: auto !important;
}
hopefully this is helpful.
Comments
Displaying 1 of 1 comments ( View all | Add Comment )
eternalikon
** “100px” can be changed, you would change both to a size you prefer. 150 looks pretty standard **