this is my very first post, nice meeting you all!
I would be grateful if you could share any suggestion about the following:
? How can I prevent text to be broken down in “boxes” every time I create a new paragraph?
? How can I change the font, the color, and the size of the texts? Like, individual texts, like only in one page or in the home page, or, within a page, only in one text box?
Thanks a lot!
]]>How can I prevent text to be broken down in “boxes” every time I create a new paragraph?
Can you explain more? Browsers will flow the text to fit the space, condensing white space.
The editor contains tools to change the color and size of text. Changing the font means you have to load the font that is used, so the theme is involved (unless it’s a font that every device has).
]]>There are a couple of things you can do if you don’t want to use blocks:
If you want to change font properties like color or size, you’ll have to switch to the Code Editor and understand CSS and how to use HTML tags. For example, if you wanted to make a few words in red, you would add a <span> tag like this:
These next three words <span style="color: red;">are in red</span>.
If you wanted to change a whole paragraph:
<p style="font-size: 18px; color: blue">This paragraph has a font size of 18px and the color is blue.</p>
Ok thanks for your suggestions!
I guess I’m too used to wordprocessors…