Hiding Date/Time Stamp on posts
-
I set up a word press page for person who is not really an advanced user. They would like the date/time stamp to be hidden on all their posts going forward. How exactly would I go about hiding the date/time stamp and Is there a way to do this as a one time action or does the code need to be manipulated each time they post?
The blog I need help with is: (visible only to logged in users)
-
-
-
Thanks Hanni, I have the custom CSS upgrade, but I’m having trouble finding the code for the date/time in the style sheet. How does it appear and how do I change it?
Thanks for the responses.
D
-
It’s all controlled from “small” including the categories. If you don’t mind having all the top metadata disappear (date, author, categories and probably tags if you use them) then add the following to your CSS:
small { display: none; } -
Thanks thesacredpath. That worked. Just wondering, is there anyway to preserve the categories and tags?
-
-
Not with that theme. The date/time is not controlled separately, so you cannot control just that element. It’s all or nothing with the theme you are using. Some themes have the time/date styled separately although you would just have to poke around the CSS on different themes to see which do and which do not.
-
-
-
If the blog in question is the one linked from your account then you should be able to hide the date but still view the other tags if you instead change the visibility.
small {display:block; visibility:hidden; line-height:0;} small strong, small a {visibility:visible;}Let me know if this causes problems/doesn’t work at all.
lh
- The topic ‘Hiding Date/Time Stamp on posts’ is closed to new replies.