Possible to centre rich text?

I’ve been trying to play around with some css in the rich text component, but can’t figure out how to centre align the text.

currently I have the following:

<span 
style="
color: steelblue;
font-size: medium;
text-align: center;
"> [Text]

Does anyone know if this is possible?


I’d just use an HTML <center> tag, eg:

<center>
<span style="color: steelblue; font-size: medium;"> 
some random text
</span>
</center>
1 Like

:confounded:
I should have seen that…
Thank you for highlighting it

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.