Tuesday 30 June 2015

How to Remove Blogger Page Title

The removal of the title of a page gives a more professional look to the page. At the same time it gives more “Website” look than a “Blog” look into your blog. And also it is very easy to do this.

To remove the title from a blogger static page:

Edit HTML and search for this code:

</b:skin>

Then add the following code after the above code:

<b:if cond = 'data:blog.pageType == "static_page"'>
<style>
.post-title.entry-title{
display: none;
  }
</style>
    </b:if>


The static page title will be removed. The code will remove it globally, so it will no longer show up on any of your pages.

To remove the title from a specific blogger page:

Click on “New Page” tab, now add a title and make a page as usual. Here comes the trick! At the moment you are in compose mode, click the tab next to it which says “HTML”, then copy the following code and paste it at the top of the HTML.

<style> .post h3 {display:none !important;} </style>

Now preview your page. The page title will disappear! :)

No comments:

Post a Comment