MyBB Community Forums

Full Version: How to set max image height for signatures only?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Our users like to have crazy big images in their signatures, so we've set a global max height of 300px, but this isn't a good solution. Is there any way for the limit to just affect signatures?
I've tried just putting max-height=300px in .signature, but that didn't seem to do anything.

Exemplary thread: https://artemida.webd.pl/thread-4155-page-10.html. User Wężowy Błysk has a large signature when max height is turned off.
Please try in theme global CSS
.post .signature img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;    
}
(2022-05-21, 07:49 PM)SvePu Wrote: [ -> ]Please try in theme global CSS
.post .signature img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;    
}

Thank you!
Proszę bardzo! Wink