Hi i am using the Alibi theme http://www.blogchemistry.com/2008/07/28/free-wordpress-theme-alibi/ and was wondering how i can edit out the date beside the post title's here is a live demo of a website http://www.paradisetheater.tv/
This piece of code: <div class="date"> <span class="dateMonth"><?php the_time('M'); ?></span> <span class="dateDay"><?php the_time('d'); ?></span> <span class="dateYear"><?php the_time('Y'); ?></span> </div> PHP: Needs to be removed from these files: archive.php category.php index.php page.php search.php single.php tag.php
If you can't be bothered, just change this in style.css: .date{ float:left; text-align:center; font-weight:800; margin: 0 10px 0 0; padding: 0 10px; border-right: 1px solid #ccc; color: #444; } Code (markup): To this: .date{ display:none; } Code (markup):
Thanks guys! i edited it out this <span class="dateMonth"><?php the_time('M'); ?></span> <span class="dateDay"><?php the_time('d'); ?></span> <span class="dateYear"><?php the_time('Y'); ?></span> because if i edit out the div class=date the post titles become irradical