I'm unable to remove my blog title from my post title in my blogger blogspot. I've tried,
.post-title.entry-title { display: none; }
but it still doesn't work.
If you're talking about post title where you want to remove home page title after post title than:
replace <title> to </title> with (located under the <head> tag)
<title>
</title>
<head>
<b:if cond='data:blog.pageType == "index"'> <title><data:blog.pageTitle/></title> <b:else/> <title><data:blog.pageName/></title> </b:if>
go to <b:includable id='title'> then add <!-- and --> below <b:else/>
<b:includable id='title'>
<!--
-->
<b:else/>
or, you can add inline css inside heading-1, as follows:
<h1 class='' style='display:none; visibility:hidden;'>
If you want to remove it by css. You can add following css code.
.post h1 { display: none; }
In the top most section you will this line of code
<data:blog.title/>
and close to it you will find this code
<data:blog.pageName/>
remove and save your template
If you're talking about post title where you want to remove home page title after post title than:
replace
<title>
to</title>
with (located under the<head>
tag)