Create a Caution/Warning note using a .png image before text
I believe I've done my due diligence for this. But, surprisingly, I haven't seen an answer for how you might create a note using an image before the running text, and format the text properly. I'm trialling RoboHelp 2020. I'm just getting acquainted with CSS. And here's where I've gotten so far in the WYSIWYG editor.

And here's the CSS I have for the p.caution style at this point (the ::before clause lifted from a post here).
p.caution {
/* Styling for the regular text */
padding-left: 0px;
line-height: 1.15;
margin-top: 10px;
margin-bottom: 0px;
padding-top: 5px;
padding-bottom: 5px;
vertical-align: bottom;
font-family: Calibri;
margin-right: 0px;
margin-left: 0px;
display: inline;
font-size: 11pt;
}
p.caution::before {
--prefix-gap: 3pt;
margin-right: var(--prefix-gap);
counter-increment: p\.caution;
content: url('../images/Images-HAT_Trial/Caution.png')counter(p\.caution1, none);
}
What I'd like to achieve is the ability to wrap the text starting at the top right corner of the image to its bottom and then continue below the image with or without indentation (I won't be picky here).
My sincere thanks to anyone who'd like to take a stab at it. These styles have been around for ages. So I'm guessing there's a way to do it.
