Image Resizer

Smooth

Active member
Hey all,

Have been searching to no avail to try and find a Xen image resizer that will automatically resize any attached on linked images to a set size?

It is a photography forum we are setting up so it is a fairly crucial element.

Many thanks in advance for your replies.
 
That works, I set it as follows...

Code:
<xen:comment>Limiting image sizes in signatures</xen:comment>
<xen:if is="@enableResponsive">
    @media (min-width:700px) {
        .signature.messageText img {
        max-height: 200px !important;
        max-width: 500px !important;
        }
    }
    @media (min-width:481px) {
         .signature.messageText img {
        max-height: 125px;
        }
    }
</xen:if>

But when I adjust the max height to 250px on the first bit it breaks the width again as I want 250h x 500w.
 
Last edited:
Top Bottom