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 #2995929
Single post
Closed

Comments

  • miraizhan started the conversation

    Hello,

    I like style 5 single post (https://soledad.pencidesign.net/soledad-hipster/my-story-good-hair-day/?single_style=style-5&body=boxed-none), but image is too big. Where could I change the width of related image?

    Thank you.

  •  2,492
    PenciDesign replied

    Hi,

    You can change the single post style by going to Appearance → Customize → Single Posts → General → Single Posts Template.

    Regards,
    PenciDesign.


  • miraizhan replied

    It seems that you did not read my question carefully. I'm not asking where to change the style, but how to make the image not so wide.

    I'll duplicate my question: I like style 5 single post (https://soledad.pencidesign.net/soledad-hipster/my-story-good-hair-day/?single_style=style-5&body=boxed-none), but image is too big. Where could I change the width of related image?

    Can you help me with this? 

  •  2,492
    PenciDesign replied

    Hi,

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

    .penci-single-pheader.container-single.penci-single-style-5 {
        width: 1170px;
        margin: 0 auto;
    } @media only screen and (min-width: 961px) and (max-width: 1169px) {
        .penci-single-pheader.container-single.penci-single-style-5 {
            width: 940px;
        }
    } @media only screen and (min-width: 768px) and (max-width: 960px) {
        .penci-single-pheader.container-single.penci-single-style-5 {
            width: 726px;
        }
    } @media only screen and (max-width: 767px) {
        .penci-single-pheader.container-single.penci-single-style-5 {
            width: 480px;
        }
    }

    Regards,
    PenciDesign.



  • miraizhan replied

    I'm sorry, but I must have expressed myself incorrectly. I didn't want to reduce the width, it's great. I need to lower the height.

  •  2,492
    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: 320px;
    }

    Change 320px with the height you want to show.

    Regards,
    PenciDesign.



  • miraizhan replied

    Everything is great now, thanks. But how can I disable parallax of this image?

  •  2,492
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Single Posts → General: turn off the Enable Parallax on the Featured Image option.

    Regards,
    PenciDesign.

  • miraizhan replied

    Thank you!