Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2837618
featured image height
Closed

Comments

  • RoadtoPangea started the conversation

    Hi all,

    I would like to change the height of the featured image (single Post, Style 5) so that more can be seen on the image. Can you give me the CSS code? That would help me a lot.


    Thank you in advance,

    Best,

    Nadine

  •  2,493
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    .penci-body-single-style-5 .container-single .post-image {
        max-height: 550px;
    }
    Change 550px to your custom value.

    Regards,
    PenciDesign.


  • RoadtoPangea replied

    Thanks for your help.

    I would like to have the whole image on it. As I had used the code you sent me, I didn't get that, even if I set the max height higher.

    Whats wrong?

  •  2,493
    PenciDesign replied

    Hi,

    Please modify the code like this:

    @media only screen and (min-width: 767px) {
        .penci-body-single-style-5 .container-single .post-image {
            height: 550px;
        }
    }

    Regards,
    PenciDesign.