Categories show abnormal

Categories on the left, how do I adjust it to the right, you can share css code?
1.categories abnormal(my)


2 categories right

This should right-align them.

table.topic-list td.category { text-align: right; }
3 Likes

:clap::clap::clap:thx u

so sry :sweat_smile:

Yeah, that happens when you right align things. Hence why they were originally left aligned.

2 Likes

o add padding-left or padding-right?

Your better option will probably be trying to increase the width of the title column and reduce the category width

2 Likes

You will want to target

/* topic column */
table.topic-list th.default, table.topic-list td.main-link { width: whatever; min-width: whatever; }

/* category column */
table.topic-list th.category, table.topic-list td.category { width: whatever; min-width: whatever; }
4 Likes