Hide author name beneath articles
-
Hi!
I would like to hide the author-name beneath the articles on my Gazette-theme page.
Does anyone know the css for that?
The blog I need help with is: (visible only to logged in users)
-
All CSS editing is theme specific editing. This might help:
https://en.forums.wordpress.com/topic/removing-author-link-profile-photo-from-pinboard?replies=2
This code has worked for me in the past. Remove the entire CSS and add this:
.home .author-img, .home span.author.vcard, .home div.entry-meta span.sep {
display:none;
}.single-post .entry-meta .author-img,.single-post .entry-meta .author {
display: none
} -
This will hide the author name on Gazette theme:
.site-main .entry-footer .byline { display: none; } -
@marioashley, indeed CSS code is theme-specific, different div IDs and classes are used to target different elements.
In this case (Gazette), the code I posted above will work. :)
-
- The topic ‘Hide author name beneath articles’ is closed to new replies.