Reply To: How to limit the image size on the portfolio-list class

#10044481
Support
Keymaster

Hello,

Use a class to that, for example:

HTML:

<img src="..." class="img-responsive custom-img" alt="...">

CSS (css/custom.css):

.custom-img {
    max-width: 100px !important;
    max-height: 100px !important;
}

Best Regards,

Okler Themes