August 3, 2016

How to Hide / Remove Page Title Once It Is Open

Hello Guys ! By default when you open a Page the page title is also displayed. For whatever your reason and want to hide / remove the page title if the page is open then you're on the right page. I'll be showing to you guys on how to remove Page title once it is open. It is quite simple we will be using the the display:none again on the page title tag and that's it. So let's get started.




Step 1. Proceed to EDIT HTML.


Step 2. Add this Code below </b:skin>

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

Guide



Thanks Happy Blogging.