XF 1.5 enlarging the resource images.

JVCode

Well-known member
How do I make the resource image larger without it overlapping the resource title and description ?
Capture.webp

Thanks.
 
Last edited:
Try adding this in extra.css template
Code:
.resourceListItem .resourceImage .creatorMini {display: none;}

.resourceListItem .resourceImage .resourceIcon img {
    width: 60px;  /* you can change the size of the resource icon here */
    height: 60px;
}

.resourceListItem .resourceImage {
    width: 76px; /* You need to adjust this with the size of the resource icon  */
}
this example look like this in xenforo.com
upload_2017-7-31_18-15-47.webp
 
Top Bottom