Ranking button text color

Karl

Member
Hi where would one change the color of the text on the ranking button? it has changed after upgrading and is not very clear.
 
Rank or stats button?
rank button are simply images you created, 1.gif, 2.gif etc

stats button -> settings_button.php
Code:
imagestring($img, 5, 75 - ((strlen($TMPL['rank']) - 1) * 4), 50, $TMPL['rank'], $color2); // Rank Position
which uses the $color2 a few line above
Code:
$color2 = imagecolorallocate($img, 255, 255, 255); //Set your colors
 
Back
Top