I wanted to change the post view title bar from “Blog – Latest News” to the title of the article. I found a thread with code previously posted. I tried pasting that into the quick css but it didn’t work.
Can it be changed and/or is it possible to have the title bar not appear on posts, just on pages?
Hey amyreiley,
Could you provide us with a link to the site in question so that we can take a closer look please?
Best regards,
Rikard
Hey!
Try adding this code to the Quick CSS:
#top.page .title_container{
display: none;
}
Cheers!
Josue
Ok, I was not clear. That code removes the title bar from pages but leaves the Blog-Latest News title on blog pages. I want to have titles on the pages and also display titles on the posts instead of Blog-Latest News. OR have the title bar not appear at all on posts. But I DO want it to appear on the pages.
Ok let’s do the second, change the code to:
#top.single-post .title_container{
display: none;
}
Ok that works. Thank you.