Hi, the descriptions of our categories aren´t shown at mobile version. Could you please help me. I´m not very familiar with CSS, but learning every day a little bit more
Dektop

Mobile
Thanks for your support
Hi, the descriptions of our categories aren´t shown at mobile version. Could you please help me. I´m not very familiar with CSS, but learning every day a little bit more
Dektop

Mobile
U can try add this code to css:
@media only screen and (max-width: 601px){
.category-list.with-topics .category-list-item .category-description {
display: table-row;
}
}
Great, thanks so much!
May I ask two questions more?
Thank you!
These two are separated, so it is very difficult to change them using only CSS. Alternatively, doing so might break other components.
Generally, this is a temporary change.
Since the button’s background color has changed, we can use a CSS class to adjust the text color:
.list-controls .container #create-topic {
color: #fff;
}
Variable color: Developing Discourse Themes & Theme Components
This helps! Thanks so much!
Hi @Bcat thank you for the useful CSS code to add descriptions for mobile.
Is it possible on mobile to have the description appear on the right side of the image, not underneath the image?
Just like this?

Should be possible with simple css.
Float the image to left and make parent div’s position relative.
bless your soul for this one