CPC900 Posted May 29, 2010 Report Share Posted May 29, 2010 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?!? Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted May 29, 2010 Administrators Report Share Posted May 29, 2010 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 Quote Link to comment Share on other sites More sharing options...
CPC900 Posted May 29, 2010 Author Report Share Posted May 29, 2010 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.... Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted May 29, 2010 Administrators Report Share Posted May 29, 2010 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. Quote Link to comment Share on other sites More sharing options...
CPC900 Posted May 29, 2010 Author Report Share Posted May 29, 2010 I would have never got that. Thanks very much! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.