Collapse a Forum Subtitles

Mahares

Expert
Licensed User
Longtime User
When scrolling the list of forums and their subtitles, is there a way to collapse a forum. and of course be able to expand it if need be. For instance, I never use or look at the B4R forum, I would like to be able to collapse it.
 

Sandman

Expert
Licensed User
Longtime User
If you're open to using a browser plugin like Stylus, you could add this css to entirely remove it from the list. The threads will still show up in New posts though.

CSS:
.block--category74 {
  display: none;
}


By the way, this is how i modify the site to get old-skool display of attached files in the forum.
 

DonManfred

Expert
Licensed User
Longtime User
css to entirely remove it from the list
this works for B4R, B4i and all the other languages other than GERMAN too?

Sounds GREAT. IĀ“ll install the plugin right now...
 

Sandman

Expert
Licensed User
Longtime User
Here's some updated css to hide different sections on the forum frontpage.
CSS:
/* To hide B4A */
.block--category25 {
  display: none;
}

/* To hide B4i */
.block--category61 {
  display: none;
}

/* To hide B4J */
.block--category53 {
  display: none;
}

/* To hide B4R */
.block--category74 {
  display: none;
}

/* To hide General */
.block--category8 {
  display: none;
}

/* To hide More Languages */
.block--category10 {
  display: none;
}

/* DonManfred Special: Hide all More Languages but keep German */
.node--id13, .node--id12, .node--id20, .node--id15, .node--id23, .node--id31 {
  display: none;
}
 
Top