Log in

View Full Version : How do I change the color of only new posts?


eether
10-21-2005, 01:12 PM
I want to change the color of the links for new post, both on the Forum View and on the Thread View.

The only thing I can manage to do is change the color for all links, changing the color of the alt1 links does change the color of the new post links, but it also changes the color of some other links.

peterska2
10-22-2005, 10:17 PM
If template threadbit

FIND

<if condition="$show['gotonewpost']">
<strong><a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]">$thread[threadtitle]</a></strong>

REPLACE WITH

<if condition="$show['gotonewpost']">
<strong><a href="showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]" id="thread_title_$thread[realthreadid]"><font color="#FFFF00">$thread[threadtitle]</font></a></strong>

This will show it in yellow. Change the hex code according to your tastes.