-
I'd like to use different color in long text - one or several words. Or some cells in table. How can I do that? |
Beta Was this translation helpful? Give feedback.
Answered by
welpo
Dec 30, 2024
Replies: 1 comment 1 reply
-
You'll need to use HTML and load custom CSS. For example, in your article: This <span class="blue">is blue</span> And load CSS: .blue {
color: blue;
font-weight: bold;
} Or… you could disable CSP/allow inline styles and do something like: <p style="color: blue; font-size: 20px; text-align: center;">
This is a paragraph with inline styles.
</p> |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
stalkerGH
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You'll need to use HTML and load custom CSS.
For example, in your article:
And load CSS:
Or… you could disable CSP/allow inline styles and do something like: