In the Flare editor, they look fine in the non-print medium view (see image below).
But in the HTML5 output of this topic, the border and image disappear for some of the note styles (see image below).
I have no idea what's going on. It only happens for the Reference, Best Practice, Warning, and Prerequisite and not for the Note or Tip, which seems bizarre!
If you want to look at the CSS code, here it is:
Code: Select all
p.note
{
mc-auto-number-format: '{b}Note: {/b}';
font-weight: normal;
font-family: Calibri;
font-size: 100%;
color: #000000;
padding: 5px;
padding-right: 15px;
padding-left: 46px;
padding-bottom: 5px;
margin-left: 20px;
margin-right: 40px;
margin-bottom: 10px;
margin-top: 6px;
background-image: url('../Images/Icons/Note-PNG.png');
background-repeat: no-repeat;
background-position: 1% 25%;
border-radius: 8px;
border: solid 1px #292929;
height: auto;
page-break-inside: avoid;
mc-next-tag: p;
}
p.reference
{
mc-auto-number-format: '{b}Reference: {/b}';
font-weight: normal;
font-family: Calibri;
font-size: 100%;
color: #000000;
padding: 5px;
padding-left: 46px;
padding-right: 15px;
padding-bottom: 5px;
margin-left: 20px;
margin-right: 40px;
margin-bottom: 10px;
margin-top: 6px;
background-image: url('../Images/Icons/Reference-PNG.png');
background-repeat: no-repeat;
background-position: 1% 25%;
border-radius: 8px;
border: solid 1px #97989b;
height: auto;
page-break-inside: avoid;
mc-next-tag: p;
}
p.bestpractice
{
mc-auto-number-format: '{b}Best Practice: {/b}';
font-weight: normal;
font-family: Calibri;
font-size: 100%;
color: #000000;
padding: 5px;
padding-right: 15px;
padding-left: 46px;
padding-bottom: 5px;
margin-left: 20px;
margin-right: 40px;
margin-bottom: 10px;
margin-top: 6px;
background-image: url('../Images/Icons/BestPractice-PNG.png');
background-repeat: no-repeat;
background-position: 1% 25%;
border-radius: 8px;
border: solid 1px #f68d41;
height: auto;
page-break-inside: avoid;
mc-next-tag: p;
}
p.tip
{
mc-auto-number-format: '{b}Tip: {/b}';
font-weight: normal;
font-family: Calibri;
font-size: 100%;
color: #000000;
padding: 5px;
padding-right: 15px;
padding-left: 46px;
padding-bottom: 5px;
margin-left: 20px;
margin-right: 40px;
margin-bottom: 10px;
margin-top: 6px;
background-image: url('../Images/Icons/Tip-PNG.png');
background-repeat: no-repeat;
background-position: 1% 25%;
border-radius: 8px;
border: solid 1px #7ca44c;
height: auto;
page-break-inside: avoid;
mc-next-tag: p;
}
p.prerequisite
{
mc-auto-number-format: '{b}Prerequisite: {/b}';
font-weight: normal;
font-family: Calibri;
font-size: 100%;
color: #000000;
padding-right: 15px;
padding: 5px;
padding-left: 46px;
padding-bottom: 5px;
margin-left: 20px;
margin-right: 40px;
margin-bottom: 10px;
margin-top: 6px;
background-image: url('../Images/Icons/Prerequisite-PNG.png');
background-repeat: no-repeat;
background-position: 1% 25%;
border-radius: 8px;
border: solid 1px #2a65ac;
height: auto;
page-break-inside: avoid;
mc-next-tag: p;
}
p.warning
{
mc-auto-number-format: '{b}{color red}Warning: {/color}{/b}';
font-weight: normal;
font-family: Calibri;
font-size: 100%;
color: #000000;
padding: 5px;
padding-right: 15px;
padding-left: 46px;
padding-bottom: 5px;
margin-left: 20px;
margin-right: 40px;
margin-bottom: 10px;
margin-top: 6px;
background-image: url('../Images/Icons/Warning-PNG.png');
background-repeat: no-repeat;
background-position: 1% 25%;
border-radius: 8px;
border: solid 1px #ed3539;
height: auto;
page-break-inside: avoid;
mc-next-tag: p;
}