this post was submitted on 28 Aug 2025
8 points (100.0% liked)

PieFed help

1091 readers
1 users here now

It's seems right that we should have a local community to help us all with PieFed

Rules

Be kind! We're all learning

founded 2 years ago
MODERATORS
 

Hi!

I have set 'Compact UI' in the settings to 'No - expand images' but in my home feed they are still cut off. Looking at the code I can see the following:

.post_teaser_image_preview a {  
    max-height: 575px;  
    overflow: hidden;  
}  

and disabling max-height solves my issue (seeing the whole image in the feed without clicking it).

How do I specify this in the custom CSS section in the settings so that the max-height is always disabled?
I tried

:disable {  
    .post_teaser_image_preview a {  
        max-height: 575px;  
    }  
}  

but it doesn't work.

you are viewing a single comment's thread
view the rest of the comments
[–] jeena@piefed.jeena.net 2 points 1 week ago

Probably:

.post_teaser_image_preview a {
max-height: none;
}