Removed author, how to remove "by"?
-
I have managed to remove the author from my posts with
.author {
display: none;
}and the byline and the slashes with
.entry-meta .byline,
.entry-meta .sep {
display: none;
}However, in “more articles” and in the Categories Archives the name of the author has disappeared (as I wanted) but it still says “de” (which is “by” in Spanish). Could you please help me with that?
Thanks!
The blog I need help with is: (visible only to logged in users)
-
Hi there, the more articles section has a slightly different CSS selector structure from the rest, so let’s add that selector to the existing rule you have so that it looks like this.
.entry-meta .byline, .entry-meta .sep, .group-blog .more-articles .byline { display: none; } -
-
- The topic ‘Removed author, how to remove "by"?’ is closed to new replies.