Topic: New thumbnail sizes

Posted under General

This topic has been locked.

I couldn't help but notice that there was a thumbnail update recently. that made all the images massive and as such hard to read. Not to mention old images now appear blurry. Is there a way to revert this change/set custom size/amount of images per page (perhaps with custom CSS?)

Updated by Cinder

drya said:
I couldn't help but notice that there was a thumbnail update recently. that made all the images massive and as such hard to read. Not to mention old images now appear blurry. Is there a way to revert this change/set custom size/amount of images per page (perhaps with custom CSS?)

Gear button under the Search bar on the top left, you can change both settings

nin10dope said:
Gear button under the Search bar on the top left, you can change both settings

Thank you, I appreciate it!
I don't like how so many apps recently push massive, tiktok style viewing experience. I like my thumbnails tiny and being able to see many at once :)

If still needed, this css makes the thumbnails customizable:

section.posts-container {
display: grid
;
gap: .5rem;
grid-template-columns: repeat(7, 1fr);
--thumb-image-size: 150px;
}

The "7" in brackets is the amount of columns, so change it if you need more or less
and below the "150px" is the size of the containers.