Hide latest posts box on right - in selected node

Morgain

Well-known member
I have a Category with a collection of subforums. Using the 2 column layout looks great but the Latest box on the right is distracting and no real use.

Can I EXTRA.css that one instance of the Latest box to hide it in THIS Category?
 
I have a Category with a collection of subforums. Using the 2 column layout looks great but the Latest box on the right is distracting and no real use.

Can I EXTRA.css that one instance of the Latest box to hide it in THIS Category?

Not sure I understood but I tried the following where 34 was the ID of the forums lastpost area I hid you would insert your own ID as yours will be different.

Code:
#forums .node_34 .nodeLastPost {display: none;}

It leaves the rss icon though but you could remove that by adding to the code I think

#forums .node_34 .tinyIcon << so it looks like the following

Code:
#forums .node_34 .nodeLastPost, #forums .node_34 .tinyIcon  {display: none;}
 
Magic!

I'm curious thought - not seen a hash before in the .css you give us Shelley.
EXTRA.css stuff usually starts with a dot. Hash at #forums


If you have an element:

<div class="morgain">​
it is designated .morgain in css​

If you have an element:

<div id="morgain">​
it is designated #morgain in css​
in css a '. ' equals class and a '#' equals id
 
Top Bottom