1

The position of my hat appears to change after I wear the hat.

From picture 1 and 2, the sword is clearly aligned with the letter N.

However, after wearing the hat, the position of the sword is evidently placed before the letter N, as seen in picture 3.

Picture 1

enter image description here

Picture 2

enter image description here

Picture 3 (profile page)

enter image description here

This is likely due to my profile picture being shrunk to fit when displayed on the profile page.

2

1 Answer 1

3

Not an answer but rather an explanation of why this occurs.

On your profile page, the original large-sized image (https://i.sstatic.net/Rv5jh.png?s=328&g=1) is linked. Hence, when it is displayed on your profile page (as seen in Picture 3 in your question), your profile picture appears to have shrinked in width.

Image

However, in most other places, a thumbnail (https://i.sstatic.net/Rv5jh.png?s=128&g=1) of your profile image is displayed. This makes your profile picture cropped at its sides.

Image


This could be resolved by the SE developers by adding object-fit to the <img> tag on the profile page, i.e.,

<img src="https://i.sstatic.net/Rv5jh.png?s=328&amp;g=1" alt="" width="164" height="164" class="bar-sm avatar-user"
style="object-fit: cover;">

^^ this part is added

When style="object-fit: cover;" is added, the result is as follows:

Image

For comparison, this is how your profile picture currently displays:

Image

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .