TryGhost / Source

The default theme for Ghost
https://source.ghost.io
MIT License
66 stars 134 forks source link

Picture not shown? #32

Closed EchoBilisim closed 10 months ago

EchoBilisim commented 11 months ago

Hello, there seems to be an issue with one of the contents on the homepage. I noticed that an image is not appearing in the designated section. I checked the demo site, and the same problem persists there as well. I attached a screenshot of the selected area where the image should be, but it's not visible. Is this an error on my part or is it a known issue?

Ekran görüntüsü 2023-12-01 234709

minimaluminium commented 10 months ago

This is intentional by design to hide the image of the last post in the middle column to keep the balance of the overall section. If you still want to show the image of the post, use this CSS as code injection.

<style>
    .gh-header.is-highlight .gh-header-middle .gh-card:last-child .gh-card-image {
        display: block;
    }
</style>
EchoBilisim commented 10 months ago

This is intentional by design to hide the image of the last post in the middle column to keep the balance of the overall section. If you still want to show the image of the post, use this CSS as code injection.

<style>
    .gh-header.is-highlight .gh-header-middle .gh-card:last-child .gh-card-image {
        display: block;
    }
</style>

I understand. I tested it, and yes, as you mentioned, it looks better in its original form. I have decided to use the original version. Thank you very much for your response.