Blog title

Dear Support, 

I would like to get out the blog title from the subheader, and place the title of the blog post above the content of the blog posts, but not in the subheader.

I have used css to hide the subheader title like this:
#Subheader .title { margin-bottom: 0; width: 10%; float: left; display: none }

This means that the title is hidden on every page and on every blog posts. 

But for the blog posts I would like to bring it back, under the subheader, above the blog post. 


As you see, the title is not there at all, which is good for me for the rest of the page, but for the blog posts I would like to bring it back with a h1 or h2 formatting. 

Could you please advise?

Best regards,
Andras

Comments

  • Hey,

    to hide title on single blog pages, please use below css:
    #Subheader .title { display: none; }
    .single-post #Subheader .title { display: block !important; }
    Above css will hide subheader on every pages, except single post pages. But unfortunately it is not possible to move title under subheader.

    Thanks for understanding!
  • Dear Support, 

    Thank you very much for the help!
Sign In or Register to comment.