Okay
  Public Ticket #2534427
Center blog post title
Closed

Comments

  •  1
    SylviaMacD started the conversation

    Hi 

    I've got my Blog Header Type set to "Variable height & meta overlaid" which has the meta info under the post title as I want it, however both the meta info and title are left aligned.   I'd like to center them. 

    I've added this CSS which does center the meta info, but not the title.  What should I change the CSS to?

    .row.heading-title.hentry {
        text-align:center;
        border-bottom: none;
    }

    Thanks

  •  2,965
    Andrew replied

    Hi Sylvia,

    Use the following custom css:

    .single.single-post .heading-title[data-header-style="default"] h1 {
        margin-left: auto;
        margin-right: auto;
    }
    

    Thanks.

  •  1
    SylviaMacD replied

    Thanks Andrew, that's perfect!