XF 2.1 How could I enlarge the FURL image size?

Gator

Well-known member
How could I enlarge the FURL image size? It is too small now and I would like to make it larger.

Any help would be appreciated. :)
 
This in extra.less should do the trick:

Code:
.bbCodeBlock--unfurl .contentRow-figure.contentRow-figure--fixedSmall
{
    width: 110px;
}

Any larger than that you may need to add this in:

Code:
.bbCodeBlock--unfurl .contentRow-figure.contentRow-figure--fixedSmall
{
    width: 110px;
    img { max-height: 100px; }
}
 
Top Bottom