The forum stylesheet needs one update
Rafael
Posts: 136
in The Commons
When you see the attached images inside a post, on small windows or tablet mode for example, the images are compressed horizontally. Still, the height remains the same, so they are spaghettified.
Take a look, please.
Comments
You can add an "aspect-ratio" CSS property.
https://www.google.com/search?client=firefox-b-d&q=aspect-ratio+CSS+property
You should submit this with a help request as a suggestion. We are told that Daz employees seldom read the forums, so they won't see your comment.
Ok.
The problem isn't the lack of an aspect-ratio property, as images by default load with the correct ratio. The problem is that they're setting the width and height of the image, but the width gets overriden when the image is too big (due to max-width: 100%), while the height remains hardcoded.
The fix is to remove the hardcoded height property, or set it to auto. (And they might as well remove the width property also, since it doesn't do anything.)