If you open the driftmeter.lpr file (any text editor) and look for following 2 buttons -
openPrivButton( "drftscoretext",186,160,9,5,3,-1,0,langEngine( "%{driftmeter_driftscoretext}%" , $LastDriftScore ) );
openPrivButton( "driftcombotext",187,150,9,7,3,-1,0,langEngine( "%{driftmeter_driftcombotext}%" , $DriftScore ) );
drftscoretext is the button that shows your score for current drift - will be overwritten with new score if you do new drift.
driftcombotext is the button that shows your score for the current lap, and will add up and total all your scores for the individual drifts. Resets at start of new lap. Lapper does not save record unless you cross start/finish line.
Try playing around with the button parameters to move/edit buttons to suit.
First number is placement left to right (out of 200), 2nd is placement top to bottom (out of 200), 3rd is width, 4th is height of text, 5th would be spacing between lines of text, 6th is time in seconds for button to stay in view [-1 means always there], and last number refers to background colour of button + text alignment.
More info on button number meanings within standard LFSLapper.lpr file.
If you want to change colour of text within button, then you will have to edit the language file(s), which can be found at bottom of file - for English text, will be under Lang "EN".
Buttons are;
driftmeter_driftscoretext = "^2+ ^7{0}";
driftmeter_driftcombotext = "^7{0}";
The ^2 and ^7 refers to the colours used (I'll let you research within the LFSLapper.lpr file to find colour values), and the {0} refers to the $ var (eg $DriftScore) at the end of the button description line.
Have fun!
PS My keyboard spacebar key is kaput, and you've no idea how long it's taken to write this by CTRL-V spaces between every single word and sentence Hope it was worth the effort.