Benjamin_D
(Benjamin Decotte)
August 3, 2021, 6:57pm
2
Hi !
I’d say very likely and it seems you’ve already found the way tinkering with chrome, so if your question is more “where to apply my modifications?”, you’ll find an example there:
You’re adding category logos that already include descriptions. They force the text-based Discourse descriptions to be rendered out of view - because the category logos are so wide.
[image]
Even when they’re out of view, they will still affect the layout of their sibling elements.
Can you try adding this CSS to your theme under desktop > CSS
.category-list {
.category-description {
display: none;
}
.category-logo.aspect-image {
margin-bottom: 0;
}
}
like so
[image]
and many more here Search results for 'category-list' - Discourse Meta
1 Like