Starz Hey everyone. I'm kind of a big noob when it comes to CSS/LESS, and I want to know how I can change my text colour.
Kylo Add custom CSS from Appearance -> Custom Styles -> Edit Custom CSS body { color: #000; } #000 is your desired color's HEX code (which is black right now). It also could be the color's name black or RGB value rgb(0,0,0)
Kylo [deleted] Indeed. If you look at less/common/variables.less the text color is directly defined as #111 for light and #ddd for dark mode. I thought (s)he was asking to change this since it defines the body's main foreground color in less/common/scaffolding.less ... want to know how I can change my text colour
Kylo You need to be more specific because there is no single item to hook for customizing everything on your forum. You have to find their nodes, classes or ids via browser's "Developer Tools". That area from the screenshot is belongs to TagsPage-nav class, i believe: .TagsPage-nav { color: #000; }