- Joined
- Feb 27, 2013
- Messages
- 72
- Points
- 0
I just want to share something about the entry-title on Wordpress. It works on Hybrid theme
How to hide the title on one specific page:
If you inspect element on the page you want the title to be gone then you will noticed an id with a name like post-6528. Numbers would be different.
So in css you it looks like this:
#post-6528 .entry-title a {
display: none;
}
How to hide the title on one specific page:
If you inspect element on the page you want the title to be gone then you will noticed an id with a name like post-6528. Numbers would be different.
So in css you it looks like this:
#post-6528 .entry-title a {
display: none;
}