Hi guys – I need to remove the ‘blog’ title from the default blog page – I’m using a plugin that shows products on this page and I don’t want the title ‘blog’ to show.
see here http://lmecentral.com.au/teach-me-italian-everday-vol-1/
Can you tell me how to remove it from the blog and not any of the other pages.
i tried the following but it removes it from all the pages
#top .title_container .main-title {
display: none;
}
thanks
Hey Shortie!
Please use following code instead
.single strong.main-title.entry-title {
display: none!important;
}
Regards,
Yigit
Hi Guys – this kind of worked – but strangely when a search results comes up – the word ‘BLOG’ is still at the top – how do I remove this?
See this page here
Any clues how to get rid of that? I’m using a child theme so can amend template files
Hey!
Try adding this:
.html_entry_id_159 .main-title {
display: none!important;
}
Cheers!
Josue
yikes that didn’t work either See here
Hey!
Please add following code to Quick CSS as well
.blog strong.main-title.entry-title {
display: none!important;
}
Regards,
Yigit
great – that worked