Quote:
Originally Posted by microscopes
Anyone figure out a way to change the link color on posbit? Right now its the same link color as the rest of my forum. I want it to be a different color
|
Admincp >> Plugins & Products >> Plugin Manager :
ibProArcade: Crowns in Postbit
Find:
PHP Code:
$crowns .= "<a href=\"arcade.php?" . $this->registry->session->vars['sessionurl'] . "do=stats&gameid=$this_game[gid]\"> <img src=\"arcade/images/$this_game[gname]2.gif\" border=\"0\" alt=\"$imgtext\" width=\"20\" height=\"20\" />";
Change it to this:
PHP Code:
$crowns .= "<a style=\"color:#CA226B\" href=\"arcade.php?" . $this->registry->session->vars['sessionurl'] . "do=stats&gameid=$this_game[gid]\"> <img src=\"arcade/images/$this_game[gname]2.gif\" border=\"0\" alt=\"$imgtext\" width=\"20\" height=\"20\" />";
I just added
style=\"color:#CA226B\
Change the #CA226B color to what you want..