I've managed to hide the date from the posts on the main page (just in the theme settings), but still there is a date showing when you open a single post.
I tryed to find <?php the_time('') ?> but there is none.
How can i turn it off or hide at least?
http://wordpress.org/extend/themes/lightword/
iansblog
Member
Posted 9 months ago #
Edit the LightWord: Stylesheet (style.css)
Go to line 108 and replace:
.comm_date{background:transparent url(images/date_comm_box.png) no-repeat;height:100px;width:57px;position:absolute;text-align:center;margin:0 0 0 -72px;z-index:2;}
with
.comm_date{background:transparent url(images/date_comm_box.png) no-repeat;height:100px;width:57px;position:absolute;text-align:center;margin:0 0 0 -72px;z-index:2; visibility:hidden;}
Ian