Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
How to change link colour in vanila forum
udawwa
New
How to change link colour in vanila forum
0
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