Removing blog title from blog posts in blogger

3.3k Views Asked by At

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.

5

There are 5 best solutions below

3
On

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)

<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.pageTitle/></title> 
<b:else/>
<title><data:blog.pageName/></title>
</b:if>
0
On
  1. Click on the "Edit HTML" button and select "Ok." 2.widget id='Header1' locked='true' to locked='false'
  2. Select "Layout" from the left column and click "Edit" under the Header element.
  3. Remove the title or just click "Remove" button from the footer.
  4. Save your template by clicking on "Save Arrangement."
0
On

go to <b:includable id='title'> then add <!-- and --> below <b:else/>

or, you can add inline css inside heading-1, as follows:

<h1 class='' style='display:none; visibility:hidden;'>
0
On

If you want to remove it by css. You can add following css code.

.post h1 {
   display: none;
  }
0
On

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