Options
How to change link colour in vanila forum

How to change link colour in vanila forum
0
How to change link colour in vanila forum
Comments
You have to create a (minimal) custom theme for that. Easiest step would be
1. to copy one of the themes found in /themes folder
2. delete everything but
about.php
anddesign/custom.css
3. get used to your browsers developer tool: right click on the element you want to change, look for a context menu entry like "Inspect Element..." and find out the element path
4. add something like
a {color: #20af92}
to yourdesign/custom.css
@R_J thnx a lot