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:
.b--category74 {
  display: none;
}


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

Sandman

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

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

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

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

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

/* To hide More Languages */
.b--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;
}
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…