Martok
Well-known member
In 1.1.5 I've been using this to control the size of images in signatures.
This has worked just fine in resizing sig images that are too big on the forums.
In 1.2, this is now causing problems because with smaller screens, the sig image will remain at 550 x 125, making it stick out beyond the forum post box size.
The problem seems to be with max-width: 550px !important; as when this is removed, the sig image resizes on smaller screens as expected. However without this it means that members can use images which are wider than 550px.
I'd be grateful for any help on how to get this working correctly with responsive.
Code:
.message .signature .bbCodeImage {
max-height: 125px !important;
max-width: 550px !important;
}
This has worked just fine in resizing sig images that are too big on the forums.
In 1.2, this is now causing problems because with smaller screens, the sig image will remain at 550 x 125, making it stick out beyond the forum post box size.
The problem seems to be with max-width: 550px !important; as when this is removed, the sig image resizes on smaller screens as expected. However without this it means that members can use images which are wider than 550px.
I'd be grateful for any help on how to get this working correctly with responsive.