Recent Posts

Archives

Topics

Meta

FAQ

How to Change Font Colour

Since WordPress’s built-in editor does not have a colour palette to change font color, you will have to do it manually. To do this, you’ll need to switch to the “code” view that is located on top of the editor. Once it is switched, you can use HTML tags to manually format your text colour.

Example:

<font color=”red”>red</font>
<font color=”00CCFF”>blue</font>

I like to play with colours. What codes can I use?

HTML web-based colour uses hexadecimal notation. To find what the hexadecimal is for each colour, go to this website:
VisiBone Colour Lab (mouse over to click on any of the colours to display the colour code)

How to Create Headers

Switch to the “code” view on your editor. You can use HTML tags to manually format your text to headers.

Example:

<h1> your text here </h1>
<h2> your text here </h2> …
<h6> your text here </h6>

How to Use Line Break instead of Paragraph?

You can easily create paragraphs by simply hitting the “enter key” on your keyboard. What if you simply wanted to start a new line rather than a new paragraph? The solution is simple. Hold down the “shift” key on your keyboard and at the same time press the “enter” key on your keyboard. This will allow you to start a new line.

Spam prevention powered by Akismet