Page 1 of 1

(SOLVED) How to create info boxes in the knowledgebase editor

Posted: Fri Aug 07, 2020 1:22 pm
by shadedk
Version of script: 3.1.1
What terms did you try when SEARCHING for a solution: knowledgebase usage

Write your message below:

How do I create those info/warning boxes in the knowledgebase editor, like those I see on this knowledgebase article: https://www.hesk.com/knowledgebase/index.php?article=66 (The red and yellow boxes) :?:

Thanks in advance.

Re: How to create info boxes in the knowledgebase editor

Posted: Sat Aug 08, 2020 9:52 am
by Klemen
You need to click the HTML code editor icon when writing an article. Here's the code I use:

Code: Select all

<div class="main__content notice-flash">
<div class="notification orange browser-default">
<p>Your text here</p>
</div>
</div>
You can change orange to red, green, or blue to control the style.

Re: (SOLVED) How to create info boxes in the knowledgebase editor

Posted: Mon Aug 10, 2020 12:03 pm
by shadedk
It works, thanks.