MyBB Community Forums

Full Version: Change color of thread link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do you change the color of the thread link when there is a new reply?
Hi,

you could try to add this code to the global.css of your theme:

.subject_new a:link { color: red; }

Change the color to whatever you want  Wink
(2019-08-09, 07:24 AM)NoRules Wrote: [ -> ]Hi,

you could try to add this code to the global.css of your theme:

.subject_new a:link { color: red; }

Change the color to whatever you want  Wink

Thank you.