View Single Post
  #2  
Old 09-21-2010, 09:05 PM
HIddenPanda's Avatar
HIddenPanda HIddenPanda is offline
I Am... Da Sheep
 
Join Date: Jul 2010
Posts: 52
Gender: Male
Credits: 8,127
HIddenPanda
Default RE: how to change background of siggy?

Quote:
Originally Posted by vexel
How can i change the background of siggy to color - #0013a8
In siggy.php find this code (around Line 135
PHP Code:
          $img_temp imagecreatetruecolor($newwidth$newheight); 
And AFTER IT INSERT THIS

PHP Code:
        $bgcolor imagecolorallocate($img_temp019168);
    
imagefill($img_temp00$bgcolor); 
Reply With Quote