Quote:
Originally Posted by PET
question :
In ARCADE INTEX, all games images from the left, have border 1. The problem is that the border color is blue, and it looks badly. How can i change the color ?
|
in the
arcade_main_games_bit template, find:
Code:
<a href="arcade.php?do=play&gameid=$game[gameid]"><img src="$stylevar[imgdir_arcade]/$game[stdimage]" border="1"></a>
and replace it with:
Code:
<a href="arcade.php?do=play&gameid=$game[gameid]"><img src="$stylevar[imgdir_arcade]/$game[stdimage]" style="border:1px dashed red;"></a>
if you look at the end of the new code, you`ll see the border="1" command has been replaced by a style command.. you can change the style at the end to either
solid,
dashed or
dotted and you can change the colour to either one of the fixed names, or any hex colour code your require to fit in with your theme.. I just liked a dashed red effect around my games to make them stand out..
(screenshot attached for those lacking in imagination)