Took date off of post on home page, need to take it off of each post page
-
Hi,
I am new to this and used the CSS below to get the dates off of my posts as they appear on my home page.
.home .posted-on {
display: none;
}
BUT, when I click on the post, it’s back up on the top of the page. I tried the CSS below, but it didn’t work. Any suggestions/ Thanks
.blog .posted-on {
display: none;
}The blog I need help with is: (visible only to logged in users)
-
Hi there,
Your code is actually pretty close.
Change .blog to .single-post and that should work for you:
.single-post .posted-on {display: none;}
- The topic ‘Took date off of post on home page, need to take it off of each post page’ is closed to new replies.