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.
 
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.
 
Sorry I meant the the button on the client sites. as per attached.
 

Attachments

  • rank.png
    rank.png
    14.7 KB · Views: 6
ahh :) RGB Values set in settings_buttons.php

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