Topic: Resolved: removing date and comment count from Thumbnails

I have been pulling my limited hair out trying to find out how to do this.  I am sure it is extremely easy and I am extremely stupid. lol

Last edited by jdk (2010-09-09 03:29:18)

Thumbs up

Re: Resolved: removing date and comment count from Thumbnails

I've fixed it by adding the following into the stylesheet to override.

.posts-default .entry-meta, .posts-quick .entry-meta {
background:none repeat scroll 0 0 #000000;
color:#CCCCCC;
display:block;
float:left;
font-weight:700;
height:25px;
margin:-25px 0 0;
opacity:0;
}

I changed the opacity from 70 to 0

The system will still be making the calls but the opacity will be hiding them.  I am not sure which file has the calls in it.

Needs someone smarter than me.

Last edited by jdk (2010-09-08 04:23:04)

Thumbs up

Re: Resolved: removing date and comment count from Thumbnails

Drop this in user.css:

.posts-default .entry-meta, .posts-quick .entry-meta { display: none; }

My Arras themed & Arras related site: NullCore.
Please ask questions about Arras on forum, not through mail, thanks.

Re: Resolved: removing date and comment count from Thumbnails

Brilliant!  Works a treat.

My fix didn't work in IE but your one did

Thumbs up

Re: Resolved: removing date and comment count from Thumbnails

extatix wrote:

Drop this in user.css:

.posts-default .entry-meta, .posts-quick .entry-meta { display: none; }

This doesn't seem to work in 1.5.0.1 ??? Any ideas....

Thumbs up

Re: Resolved: removing date and comment count from Thumbnails

jdk wrote:
extatix wrote:

Drop this in user.css:

.posts-default .entry-meta, .posts-quick .entry-meta { display: none; }

This doesn't seem to work in 1.5.0.1 ??? Any ideas....

It is now working.  Must have been a cache issue in the browser.

Thumbs up

Re: Resolved: removing date and comment count from Thumbnails

how could we still show just the comments, and get rid of the date?

Thumbs up