Adding Text on top of a RichTextBlockDecorator

Hey there,

I looked on the internet but doesn’t seem to find any answers on that and I’m sure there is a simple solution for this.

Let’s say I have some text with a RichTextBlockDecorator and I want to add some numbers on this decorator. Like this :
image

If the Decorator was always at the same place it would be easy to add a text on top, but, the Decorator may move (based on ingame events). So the text and the decorator won’t be on top of each other anymore.
Having a different decorator for each situation may do the trick but I guess it’s far from ideal (multiple images for the same image with just a different number and if I want to change the font I’d have to redo all of the Decorators).
Plus, if this number gets boosted by an ingame event, instead of just having to do a simple addition of two numbers and change the text, I’d have to get that new number and change the Decorator with the right one (not sure how to do that to be honest)

Thanks in advance.