The new forums will be named Coin Return (based on the most recent vote)! You can check on the status and timeline of the transition to the new forums here.
The Guiding Principles and New Rules document is now in effect.

Image sizes messed up on desktop

BroloBrolo BroseidonLord of the BroceanRegistered User regular
edited April 17 in H.Q. Reception Desk
Looks like images are screwed up right now on desktop:

nkxaqateamp3.png

there's a css rule being applied to them that makes them always 100% of screen width, no matter what size they were originally

this makes some threads kinda difficult to read on desktop:

2MVb049.jpeg

as images become very tall and pixelated when stretched to fit 100% of the screen

the rule that needs to be reverted is here:
.embedImage-img {
    height: auto;
    display: inline-flex;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 100%; 
    max-width: 100%;
    max-height: none;
}

the
width:100%
needs to be removed to make images appear at their natural dimensions

Brolo on

Posts

Sign In or Register to comment.