Removing page titles
-
Hi, I was wondering if anyone could help me.
I would like to remove the page titles from certain pages, but i’d like the titles to stay present on the home page so you can click on the links.Is there a way to do this as I’ve tried to delete page titles on the pages but they also remove it from the homepage too.
Thanks
The blog I need help with is: (visible only to logged in users)
-
Are you talking about in the navigation at top right that appears on all pages, or are you talking about the title which shows above the content on pages below such as || About || to the upper left of your picture on that page?
-
Im talking about the title which shows above the content on pages such as the about me page.
-
Ok, what you will want to do is to use your browser web inspector, or view the source code from the view menu when on the page you want to remove the titles from and in the opening body selector, you will find a unique page ID class that will look something like this: page-id-67 .
Using that, you can then create a specific rule to remove the title from that page. Using your about page as an example, the code would look like this:
.page-id-67 .entry-title { display: none; }You can copy/paste the above and then just change the numeric ID number.
-
-
- The topic ‘Removing page titles’ is closed to new replies.