RM 1.2 Hiding the Rating Panel.

max_d

Member
Hello,

I’m trying to hide the side panel that displays the rating and update from a particular category.
resources.webp

So far, the following line of code works in Extra.cc, and it hides the panel from all the categories.
Code:
.resourceList .resourceStats {
display: none !important;
}

But when I add that particular category’s node name in front of the code, nothing happens.
Code:
.node25 .resourceList .resourceStats {
display: none !important;
}

What am I doing wrong?
Thank you
 
The category ID isn't exposed like that on these pages. I'm not totally sure it'd be the correct meaning either, though this will depend on your category structure.

I'd have to recommend using conditionals in the HTML to simply remove the stats blocks for resources in the required categories.
 
Top Bottom