Hi @Rafael,
I was able to add classes to the same text element and got them to work:
The reason why your custom class “.99h-test2” doesn’t work is due to the fact that it starts with a number. That’s not a valid CSS class name:
- A valid name should start with a letter (a-z)[A-Z] , an underscore (_), or a hyphen (-) which is followed by any numbers, hyphens, underscores, letters.
- Cannot start with a digit, two hyphens or a hyphen followed by a number