WooThemes Canvas Hide titles

If you find this free website useful – why don’t you support this with a donation? It is easy…. read more ….

Custom CSS for Woothemes Canvas to hide titles

If you want to hide the page title from just the homepage this can be done with

.home .title { display: none;}

if you want to hide the titles on all pages but not on posts you can use

.page .title { display: none;}

 

Whilst this works generally, be careful as sme plugins and widgets also use the class ‘title’ so you may find some other ‘titles’ hidden

in which case use more qualified CSS such as

.home #main header h1.title.entry-title { display: none;}

or

.page #main header h1.title.entry-title { display: none;}

And if you want to hide a title or post on an idividual page or post you can use the techniques I describe here to apply styling to an individual WordPress page or post


Posted

in

,

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *