WILLZ!!!
Where did you go?
I can't find you on Messenger any more.
Anyway,
I think I fixed your border problem with the Plus! Live Preferences window!!!
This is what you have in
PlusWindows/Interfacepref-General.xml on lines 109 to 114:
code:
<Element xsi:type="ImageElement" Id="Border">
<Position Top="-2" Left="-2.5"/>
<Image>
<Name>pref_border</Name>
</Image>
</Element>
The problem here is your left margin: it seems like on some systems, half units aren't supported very well. So in those cases, the decimal separator (the ".") seems to be ignored and you get "-25" as left margin. This explains why the border is about 20 pixels to the left on those systems (including mine). Another explanation could be that a comma "," is used as decimal separator and this causes the problem... have you tried to switch the number format and see if that changes anything?
SOOO to fix this, use this instead for line 110:
code:
<Position Top="-2" Left="-2"/>
Now go and fix this.