Hiding blog tags in the kent theme
-
Hey ya’ll, I’ve tried a few CSS codes to hide tags from posts in the Kent theme. I can always change my theme, but really like this one.
Anyway, I tried these two codes and neither worked. Are there others?
.single-post .entry-tags {
display: none;
}.post-meta-bottom .post-tags {
display: none;
}Thank you!
The blog I need help with is: (visible only to logged in users)
-
Hi there,
You were heading in the right direction – this theme uses the class
tagsrather thanentry-tags, so the CSS you need is:.single-post .tags { display: none; }
- The topic ‘Hiding blog tags in the kent theme’ is closed to new replies.