SlowFox1
Member
Posted 1 year ago #
Hello everyone,
I'm trying to figure out (offline) how to remove the date from the Clear Style 1.2 Theme.
Even better if the date should show the exact date and not the date of the post.
I've tried to find the the_date function in the .php files.
I've tried to delete the date routine in the style.css
but nothing good happend
Thanks a million
The most simple way to do this would be to add the following code to style.css:
#content div.entry-meta {display: none;}
SlowFox1
Member
Posted 1 year ago #
Josh,
Thanks for the info.
The statement: #content div.entry-meta {display: none;} can be put anywhere in the style.css???
Thanks
SlowFox1
SlowFox1
Member
Posted 1 year ago #
I have put the #content div.entry-meta {display: none;} statement before the Date routine...
Thanks!
In CSS, later statements override earlier statements, so if it's not working, move it to the end of the file. Throw a comment in there for future reference while you're at it.
SlowFox1
Member
Posted 1 year ago #
ColleenT
Member
Posted 1 year ago #
Beautiful solution, thank you!