There are times when you wanted to remove the page title on your blog's static pages just to make it cleaner and appear more professional.
I mean look at the sample screen capture of a form page below:
An Ad submit page with the page title. |
Removing Submit your Ad on the navigation bar is not advisable since it is used to navigate to the form. The one appearing on the actual page, however, is not necessary so it should be removed.
Here is how
The solution is quite simple, by placing a 3 line code at the top of your page's code.
- Edit your page in HTML
- In your dashboard, click pages.
- Select the page and click on edit.
- On the edit/compose window, click on HTML so you can edit the html code of the page.
- Copy and Paste the following code at the top of your page's code
<style>
.post h3 {display:none !important;}
</style>
.post h3 {display:none !important;}
</style>
- Publish the page
- Click on the Upate button.
- Check the page you just edited and it should no longer be showing the page title on the page.
Done!
Back to CyberLiving home page
Other Posts
Using Google Spreadsheet as a query-able table using Javascript
Using Google Spreadsheet as a database for your site
2 comments
thanks this was really helpful!
thanks
Post a Comment