View Single Post
  #8  
Old 08-28-2009, 04:17 PM
BMR777 BMR777 is offline
Member
 
Join Date: Jan 2011
Posts: 1,122
Gender: Male
Credits: 10,738
BMR777 is on a distinguished road
Default RE: Naming and Changing Help

Yes, you can change the text and font size.

In siggy.php look for this code:

PHP Code:
$str1 "Name: ".$name;
    
$str2 "Owner: ".$owner;
    
$str3 "Click Here to Feed Me!";
    
$str4 "More Adopts at:";
    
$str5 "www.".$domain;


    
imagestring ($image120$textheight,  $str1$color);
    
imagestring ($image120$textheight 13,  $str2$color);
    
imagestring ($image120$textheight 26,  $str3$color);
    
imagestring ($image120$textheight 42,  $str4$color);
    
imagestring ($image120$textheight 55,  $str5$color); 
The 12's in the code are the font size. The other numbers, such as 13, 26 etc control line spacing. You can edit the text in the $str variables to whatever you want. :)
Reply With Quote