Deleting page titles on each page
-
How can I delete HOME on the home page yet keep it in my menu.
Same goes with the other titles… Contact, About the Author etc.Thank you all!
The blog I need help with is: (visible only to logged in users)
-
If you look at the page for for any of the pages and check the body HTML tag, you’ll notice that it has several classes. Each page type gets a class and also a unique value, and you can use those classes to target specific pages or types of pages using CSS. For example, you could use “.home” to target the home page or “.page” to target all pages.
So, in order to hide all of the page titles for pages in the Twenty Ten theme, you could add something like this to your Appearance → Custom Design → CSS editor:
.page #content .entry-title { display: none; }
- The topic ‘Deleting page titles on each page’ is closed to new replies.