Does anybody know how to get the red text block back? #1047
-
|
Recently, I have updated my Yellow instance and noticed that all coloured text blocks became common paragraphs. I found that the syntax had been changed:
There's no alternative for red text block. Could you please get it back? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
|
You can add your own block elements, don't worry, it's easier than you think. First, create a custom CSS class for your block element and add it to your theme's stylesheet, which is stored in your In a nutshell, here's how to make a red text block in Datenstrom Yellow:
Can you figure out the rest? |
Beta Was this translation helpful? Give feedback.
-
|
Hello, I've also noticed that my notification boxes, which I previously created with ! or !!, are no longer displayed. |
Beta Was this translation helpful? Give feedback.
-
|
Maybe relevant - In my theme I added this: This'll let you easily add info and alert bars into sites using Markdown. |
Beta Was this translation helpful? Give feedback.
You can add your own block elements, don't worry, it's easier than you think. First, create a custom CSS class for your block element and add it to your theme's stylesheet, which is stored in your
system/themesfolder. Second, in your Markdown make a general block element with the!character and add the CSS class to the first line.In a nutshell, here's how to make a red text block in Datenstrom Yellow:
.red-text-blockclass in your CSS.! {.red-text-block}in your Markdown.Can you figure out the rest?