Quote:
Originally Posted by rmxs
now about the color i mean the letter...no boarder on option in admin control panel that user can set 2 different collors EXAPLE 1-3-5-7 topics BLUE 2-4-6-8 topics RED 
|
Ok, I believe I have got this figured out

You need to edit the plugin to make this work.
Find:
PHP Code:
while($ticker = $db->fetch_array($gettickers))
Add above:
PHP Code:
$color1 = "#0000FF"; //blue
$color2 = "#FF0000"; //red
$color = 1;
Find:
PHP Code:
$ticker_titles .= '<a href="showthread.php?t='. $ticker['threadid'] .'" title="'. $ticker['title'] .'" target="blank">'. $ticker['title'] .'</a> '. $ticksep.'';
Replace with:
PHP Code:
$tick_color = ($color % 2) ? $color1 : $color2;
$ticker_titles .= '<a href="showthread.php?t='. $ticker['threadid'] .'" title="'. $ticker['title'] .'" target="blank"><font color="'. $tick_color .'">'. $ticker['title'] .'</font></a> '. $ticksep .'';
$color++;
The screenshot is what it does: