Hide tags, categories and my name/picture on posts
-
Hi, I just upgraded to the premium plan and would like to make a few changes with CSS! Among them…I’d like to hide the tags and categories as well as my name/picture on each post. If having my name is necessary, I’m hoping I can get rid of the picture.
The blog I need help with is: (visible only to logged in users)
-
Howdie!
You can use this to hide your name, tags and categories on all pages:
.byline, .cat-links, .tags-links { display: none !important; }If you only want to hide on single posts use this instead:
.single .byline,
.single .cat-links,
.single .tags-links {
display: none;
}Let me know if this helps!
Best regards,
Michael
-
Oops! Forgot the code tag! :p
For single posts use this instead:
.single .byline, .single .cat-links, .single .tags-links { display: none; } -
- The topic ‘Hide tags, categories and my name/picture on posts’ is closed to new replies.