remove date from blog
-
Hello!
Im trying to get rid of the published date next to my post and did try as suggested in this post: https://en.forums.wordpress.com/topic/remove-date-and-time-on-posts-and-pages?replies=7But its not working, im really new to wordpress so what i did so far was just to try and add: .single .post-detail, time.post-detail {
display: none;
}in my previously empty css code in appereance-custom design-css
but nothing is changingThe blog I need help with is: (visible only to logged in users)
-
Please become aware of the fact that all CSS editing is theme specific. The thread you link to is for the Hatch theme. You are using the Bouquet the,e. Here’s the link to your stylesheet so you can locate the relevant selector in your theme https://wpcom-themes.svn.automattic.com/bouquet/style.css
-
ok thank you did not know that. so what do i need to search for in the code you gave me?
i think i need some further explanation -
When those who help with CSS editing log in and help all the other bloggers who posted tothe CSS Forum before you did they will assist you with this.
-
Hi, the following will get rid of the date to the left of the post title on the single post pages:
.entry-date { display: none; }Aside: Great image in your sidebar. Not sure I’m ready for freediving, but I am going to learn to scuba this year. :)
-
ok thank you so much.
that took away the date to the left as you said, can i get rid of the posting info as the date from the fot aswell?aside: thanx, im also a scuba diver but the freediving is much more relaxing and furfilling. Once you learn the right techniques its all very comfortable. Come join us! There is many freedivers around the world
-
The way the HTML and CSS are structured this is problematic, but add this and see what you think. It takes away the date, but also takes away “and tagged” and the commas between the tags.
.entry-meta { visibility: hidden; } .entry-meta [rel=tag] { visibility: visible; float: left; } .entry-meta span { visibility: visible; } -
ok perfect just what i needed, anyway wanted to get rid of the comments so thank you so much.
-
- The topic ‘remove date from blog’ is closed to new replies.