Remove title text from page
-
Would it be possible to remove the title text from my pages? So that it does not say “Blog” on my home page? Thanks in advance
The blog I need help with is: (visible only to logged in users)
-
If you wish to remove the title from only your main front page, go to Customize > CSS, delete all the informational text in that window, and paste in the following custom CSS.
.home .entry-title { display: none; } -
@thesacredpath I am having the same trouble as @williamdane.
I tried your above solution and it worked perfectly for the home page (as you indicated). Is there a way to have it extend to hide the page titles on other pages as well?
If the CSS needs to be theme specific, I am currently using Collinear. The website in question is development2018.com
Thanks!
-
@development2018, to remove the title from all static pages, change the above code to the following.
.page .entry-title { display: none; } -
Never mind, I retract my question as I managed to find the following code here https://en.forums.wordpress.com/topic/make-page-title-invisible?replies=2 and adapt it for each of my pages (taking the code the images)
-
-
-
- The topic ‘Remove title text from page’ is closed to new replies.