Title is shown twice in blog post

When I open a blog post the title appears twice: one time in the page title bar and the second time right on top of the news. How can I remove one title (preferably the page title bar)?

You find an example at: http://www.sorelchina.cn/aquaturm/


Comments

  • The first one is Page title but the second is post title. That`s why you got them twice. If you prefer to remove title from subehader bar only for single post pages, then you can use below css:
    .single-post  #Subheader .title { display: none; }
    but if you prefer to remove title below subheader, then you can use below css instead:
    .single-post .post-header .title_wrapper h1 { display: none; }
    Like each css, this one should be also pasted in Custom CSS section.
Sign In or Register to comment.