I want to shift the " $text = 'powered by phpvms, ‘. SITE_NAME.’ '; " to the Left in the PilotData.class.php file. How should I do that, please?!?
It’s in the pilotdata.class.php a f unction called generateSignature(). I don’t remember off the top of my head but if you poke around it’s in there
I know where it is located, but not sure…do I add some kind of align= code? Again, the code that is there confuses me as to what to add?!
Line 1122:
$text = 'powered by phpvms, ‘. SITE_NAME.’ ';
Sorry, but I am not sure?! I know it is probably easy, but…
Find this line:
imagestring($img, $font, $width-(strlen($text)*imagefontwidth($font)),
This determines the starting point from the right side, and substract it to get the right width. Change it to:
imagestring($img, $font, 10,
Which will start it from 10 pixel from the left.
I would have never got that. Thanks very much!