Topic: Remove comments count/icon from slider and tapestries

http://www.dragonanswers.com/

First off, love this new theme and am enjoying working with it. Bit confused by the interaction of Arras and this Child as CSS seems to split across user.css and in my case white.css. Getting there but feel like making a page guide.

I want to remove comments on hover(slider) and on black bar, tapestries.
i used to be able to do this before I switched to classic-gamer: but can't find the relevant lines in the slideshow functions php.

Last edited by dragonanswers (2011-02-11 11:00:15)

www.dragonanswers.com
just ask, for helpful, unique answers

Re: Remove comments count/icon from slider and tapestries

Here are some simple CSS fixes. You'd have to dig a little harder for PHP fixes.

Hover slider

.scrollable .posts .entry-comments {
    background: url("images/icon_bits.gif") no-repeat scroll -39px 2px transparent;
    color: #999999;
    display: none;
    padding-left: 15px;
}

Tapestries

.posts-default .entry-comments {
    background: url("images/icon_bits.gif") no-repeat scroll -39px 1px transparent;
    display: none;
    padding-left: 12px;
}

Re: Remove comments count/icon from slider and tapestries

dgodfather wrote:

Here are some simple CSS fixes. You'd have to dig a little harder for PHP fixes.

Hover slider

.scrollable .posts .entry-comments {
    background: url("images/icon_bits.gif") no-repeat scroll -39px 2px transparent;
    color: #999999;
    display: none;
    padding-left: 15px;
}

Tapestries

.posts-default .entry-comments {
    background: url("images/icon_bits.gif") no-repeat scroll -39px 1px transparent;
    display: none;
    padding-left: 12px;
}

many thanks - will try that now. Seemed easier pre-classical, you could just remove the call from the tapestries php.

www.dragonanswers.com
just ask, for helpful, unique answers

Re: Remove comments count/icon from slider and tapestries

worked a treat, big thanks

www.dragonanswers.com
off to find those tapestry dividers now.....

www.dragonanswers.com
just ask, for helpful, unique answers

Re: Remove comments count/icon from slider and tapestries

Silly question, but which files do you edit to add/delete the above code?

I can't quite seem to find what to do with this code.

Thanks in advance!

Thumbs up

Re: Remove comments count/icon from slider and tapestries

user.css

Re: Remove comments count/icon from slider and tapestries

Thanks! It worked a treat. smile

Thumbs up

Re: Remove comments count/icon from slider and tapestries

Hello, thank you for sharing that information.

However, I added the code to CSS in User.Css and it didn't help..

Any other ideas?

www.blancfactory.com
Mac OSX
WordPRess 3.2.1

Thumbs up

Re: Remove comments count/icon from slider and tapestries

On blancfactory.com? If so, I do not see the styles I suggested in your user.css file. Please check again and troubleshoot with firebug.

Re: Remove comments count/icon from slider and tapestries

Thanks for your support.
I would like to know how to apply this on traditional type.
Could you support on this as well ?

dgodfather wrote:

Here are some simple CSS fixes. You'd have to dig a little harder for PHP fixes.

Hover slider

.scrollable .posts .entry-comments {
    background: url("images/icon_bits.gif") no-repeat scroll -39px 2px transparent;
    color: #999999;
    display: none;
    padding-left: 15px;
}

Tapestries

.posts-default .entry-comments {
    background: url("images/icon_bits.gif") no-repeat scroll -39px 1px transparent;
    display: none;
    padding-left: 12px;
}

Thumbs up