JacquelineSweet
Member
Posted 8 months ago #
I read that this isn't possible but I'm hoping there is some workaround.
I want to remove the entire line that says "By admin" on each post.
If I add this:
.author{
display: none;
}
There is no author name, but "By" still appears.
Blog is here: http://www.muscleupmom.com/
I was also trying to figure out how to add a background color to the nav bar...and keep the hover color as is.
Thanks so much if anyone has any ideas.
http://wordpress.org/extend/themes/pilcrow/
want to remove the entire line that says "By admin" on each post.
Apply your display none to this CSS selector
.post span.by-author
I was also trying to figure out how to add a background color to the nav bar...and keep the hover color as is.
Apply your background colour to this CSS selector
#nav ul
Also apply a height of 42px.
JacquelineSweet
Member
Posted 8 months ago #
Thanks so much! Worked perfectly. What a quick response, appreciate it.