Add-on Image resizer for XF2

JoyFreak

Well-known member
Licensed customer
Anyone can make this? Full image looks awful in threads, also signature images!
 
just add to extra.less template

CSS:
.message-body img
{
    max-width: 200px;
    max-height: 200px;
}
 
That's excellent, thank you. But is there a way to make it so you can enlarge when you click it?
 
I decided to use:

.bbImage
{
max-width: 500px;
max-height: 500px;
}

This works for all bbcode images including the signature.
Also found out it automatically gives the enlarge option when resized.

Thanks!
 
Back
Top Bottom