Wordpress Theme edit

Associate
Joined
23 Jun 2007
Posts
552
Location
South East
Hello

I'm currently using a theme called Telegraph and it places the date and time over the featured image of each post on the home page - I need to remove it.

You can see the demo of it here - http://demo.wpzoom.com/telegraph/

I've found this in the source

<p class="postmetadata"><span class="timestamp">August 3, 2010</span> | <a href="http://demo.wpzoom.com/telegraph/2010/08/03/eros-non-in-libero-sed-mauris/#commentspost" title="Jump to the comments">no comments</a></p>

But i'm not sure where to go from here.. I can also see it in the style.css numerous times. Any suggestions?

Noob :o

Thanks
 
Are you happy just hiding them (considerably easier)? Or do you want to physically remove them from being displayed?

If you're ok to just hide them, find "ul.posts p.datetime" in the style.css, and add:

display:none;

to it. :)
 
Are you happy just hiding them (considerably easier)? Or do you want to physically remove them from being displayed?

If you're ok to just hide them, find "ul.posts p.datetime" in the style.css, and add:

display:none;

to it. :)

You are a star, works perfectly.

Thanks!
 
Back
Top Bottom