Vote Button Stats Text Colour

Karl

Member
Where would I find the code to change the color of the results on the vote button after upgrading to the latest version it is now white which does not show up clearly.
 

Mark

Administrator
Staff member
all color changes are made in CSS, but it sounds like your CSS might not be up to date. The text should be white on a green background.
 

Mark

Administrator
Staff member
ahh :) RGB Values set in settings_buttons.php

$color1 = imagecolorallocate($img, 255, 255, 255);
$color2 = imagecolorallocate($img, 255, 255, 255);
 
Top