XF 2.2 Making the article link preview image bigger?

I was looking for this and as there was no solution I hardcoded it into the template.


Add this on the bottom of extra.less template
Code:
.contentRow-figure.contentRow-figure--fixedSmall
{
    width: 150px;
}

.contentRow-figure.contentRow-figure--fixedSmall img {
    max-height: 150px;
}

Change the 150px as per your needs!
 
Thanks for the information. I did it and the image was bigger, but it shoved the text over more. I'm going to have to figure out a way to make the title and text show under the image.
 
Top Bottom