Okay
  Public Ticket #3047077
reducing heights in post blog
Closed

Comments

  •  3
    ePrintDesign started the conversation

    Hi there... long time fan.

    Have three alterations required for existing single page blog upgrade.

    1. Reduce amount of space around h1 heading

    2. Center featured image to override default left

    3. Reduce space around bottom post_nav panel

  •  8,839
    Tahir replied

    Hey ePrintDesign ,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    body[data-ext-responsive=true].single-post .heading-title[data-header-style=default_minimal] .entry-title,.single .heading-title[data-header-style=default_minimal] {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        margin-bottom: 5px !important;
    }
    .row .col.section-title span {
        padding: 0px !important;
    }
    span.post-featured-img {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .blog_next_prev_buttons[data-style=fullwidth_next_prev] ul .next-post, .blog_next_prev_buttons[data-style=fullwidth_next_prev] ul .previous-post {
        padding: 2% 2% !important;
        min-height: 200px;
    }

    Thanks


    ThemeNectar Support Team 

  •  3
    ePrintDesign replied

    thank you, this worked perfectly