Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #1245053
Easy! Move Blog Title from Header Title to Page
Closed

Comments

  •  2
    Ryan Couch started the conversation

    Thank you!

    Should be a simple fix. On single posts, the title can be enabled and shown in the header, but is there a way to show it on the top of the body content section, like a normal blog.

    I can "Disable Title" but then there is no title at all. I can simply add a "Headline" to the article itself, but then it goes below the author and date, instead of on top of it.

    Thanks for your help!

  •  7,092
    Oliver replied

    HI!

    Sorry, can you add few screenshots?

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •  2
    Ryan Couch replied

    Thanks for your help Gregor - 

    See attached screenshot from this page. I'm simply wanting the Title of the blog to be at the top of the blog and not in the header title area. 

    http://emberlearning.net/difficult-conversations/having-difficult-conversations-listen-more


  •  7,092
    Oliver replied

    HI!

    Sorry, there is no simple way to do this. It's not couple lines of the code.

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •  2
    Ryan Couch replied

    This is unacceptable. I know how to remove the title from the top header - I have the CSS for this. 

    How about you at least tell me the CSS of how to remove the "Author / Date / Meta" line that appears above the content in the body section? That would be a start, then if I put a headline at the top of the content it will appear at the top.

    Thank you.

  •  7,092
    Oliver replied

    HI!

    Remove it's simple:

    .single-post .post-meta-right {
        display: none;
    }
    .single-post .post-meta-left {
        display: none;
    }
    .post-content .post-meta {
        display: none;
    }
    

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver