Move the number of solid line reports field

Hi,

Is it possible to move the number of solid line reports across slightly as it is currently positioned on the border of the box and is unclear:

image

Many thanks

Hi @SSmith ,
You can reposition any element with a CSS rule.
In general, you can use the "Inspect element" functionality of your browser's Dev tools to get the selector for any element and then write a CSS rule for it in the "Custom CSS" tab.
For this particular case, please use

.pl-subordinates-count {
    right: 20px;
}

Please use the correct number of pixels to it look better according to your taste :).

Perfect! Thanks very much for the quick response