View Single Post
08-30-11, 08:54 AM   #2
Unkn
Premium Member
 
Unkn's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 258
Try changing the insets...

lua Code:
  1. insets = { left = 2, right = 2, top = 2, bottom = 2 }


Play with those values, until you get the border positioned where you wont... you can also do negative numbers for the inset as well. That will move the border out from its anchored position - or making it larger than the bg its attached to - Which might be what you need to do.

Example:
lua Code:
  1. insets = { left = -2, right = -2, top = -2, bottom = -2 }
__________________
"I'm very feminine. And I'll beat the crap out of ANYONE who disagrees!"
  Reply With Quote