Rich text standard font size

Hi,
how do I change the standard a) font and b) font size of bubbles rich text editor plugin?

I currently find it a bit small.

And how would I do it conditionally?

2 Likes

Any updates on this? Is there any quick fix or CSS hack that we can use?

Oh I figured out how to quick fix it.

Just add an HTML element with the CSS code below.
Replace 20px with whatever size.
This affects all Rich Text Input elements; if you want it for a specific element, you’ll need to set the ID attribute and use the “#” instead of “.” operator below.

.ql-editor {font-size: 20px !important;}
1 Like