Hiding page title with CSS
-
I was given this CSS to hide the title of an specific page:
.post-1693 h1.entry-title {
display: none;
}This aforementioned CSS works perfect, however I need to hide the title of all pages…
What should i write then?
-
Hi there.
I had a look at the website http://www.the360guide.com
You only have a landing page up at the moment so I couldn’t test this on a standard page or post but I think the following CSS will work for you.
h1.entry-title { display: none; }To add custom CSS
Select Appearance > Customize > CSS from your Admin Dashboard and enter the custom CSS there.
-
If you want for hide all entry titles for all font/text sizes you could use:
.entry-title { display: none; } -
Fantastic!!
I used this one:
h1.entry-title {
display: none;
}It worked perfectly..
Thanks a lot.
-
- The topic ‘Hiding page title with CSS’ is closed to new replies.