Tagged: font sizes, text box
Hi and Happy New Year!
I tried to find the answer online but can’t find anything suitable.
I was wondering if I can have different font sizes in the same line/paragraph in a text box. See attached link. Where I have the white text (under ethos) , I would also like it to be a larger font size. Is this possible?
I tried copying it from a Word document, hoping to keep the format, but it didn’t work.
Thanks!
Eva
Hey Eva!
Happy new year! :)
You can wrap your text inside a span with a custom class as following
<span class="bigger-text">Here is my text!</span>
and then add following code to Quick CSS
.bigger-text { font-size: 20px; }
You can insert as inline as well as following
<span style="font-size: 20px;">my text!</span>
but we would recommend custom CSS :)
Please make sure to use HTML in text tab of Text block element
Cheers!
Yigit
Great! That worked perfectly!!
Thanks Yigit!! :-)
Eva