Okay
  Public Ticket #2884686
Post title vertically centered
Closed

Comments

  •  30
    damien started the conversation

    Hi,


    How can I ensure that blog post titles are vertically centered instead of aligned to the top as they are out of the box?


    Thanks

    Damien

  •  1,878
    Judith replied

    Hi Damien,

    Please try this css:

    #page-header-bg[data-post-hs="default_minimal"] .inner-wrap {
        padding-top: 300px !important;
    }

    Thanks.

  •  30
    damien replied

    perfect, thanks Judith! :))

  •  30
    damien replied

    it looks like its applying this to mobile view too...can we exclude this edit for mobile?

  •  2,960
    Andrew replied

    Hello Damien,

    Change the CSS to:

    @media only screen and (min-width: 1000px){
       #page-header-bg[data-post-hs="default_minimal"] .inner-wrap {
            padding-top: 300px !important;
        } 
    }
    

    Regards,

  •  30
    damien replied

    perfect, thanks Andrew :)