XF 1.5 Thumbnail Sizes

BrianC

Active member
I would like to increase the thumbnail sizes when looking at the activity, forum and CTA featured threads.
thumbnail.webp

I have found a few locations where some adjustments can be made but I cannot make them as large as I like.
.event .content .attachedImages img

Is there a way to make all thumbnails approximately 100x100 instead of the much smaller default sizes?

Thanks!
 

Attachments

  • thumbnail.webp
    thumbnail.webp
    13.9 KB · Views: 1
You should be able to add this to EXTRA.css:
Code:
.event .content .attachedImages img
{
    max-height: 100%;
}

If it doesn't override the default 32px, try using !important.
 
Top Bottom