I’m trying to make this text not show up in this menu.
This is the only place I see to edit the settings.
In order for the Description not to show up in the first screen, do I have to copy and paste the content into a separate pinned post, and hide the post with the upside down pin (i.e. description)?
Thanks as I’m a bit lost.
Heliosurge
(Dan DeMontmorency)
June 11, 2025, 1:44pm
2
Not sure if this will work
But below the “about Category”. Us the topic
The image displays a menu from a forum with options to manage topic settings, including 'Select Posts,' 'Open Topic,' 'Un-Pin Topic,' 'Archive Topic,' 'Unlist Topic,' 'Set Topic Timer...', 'Change Timestamp...', 'Reset Bump Date,' 'Set Slow Mode...', and 'Moderation History.' (Captioned by AI) 864×1920 113 KB
Otherwise you may need to try as you mentioned with new pinned post and blank out category description.
Keep in mind enlisting the topic if it works will remove it from view.
Another thing you should be able to do is use inspect element in your browser and target tu “About Category” for that category and hide it with CSS.
Lilly
June 11, 2025, 7:18pm
3
use the row style css here:
Hello,
You can hide the description with adding the following to Desktop > CSS.
Boxes with Subcategories
.category-boxes {
.description {
display: none;
}
.subcategories {
margin-top: 1em;
}
}
Rows style
.categories-list {
.category {
.category-description {
display: none;
}
.subcategories {
margin-top: 0.5em;
}
}
}
2 Likes