Warning box

Preview

Warning Your warning text here.


How to implement

Add the following CSS to the style file. It will overwrite the default Warning Box styling.

CSS Code

CSS
/* WarningBox Modern*/
.warningBox {
background: #FFFFFF;
box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.15);
border-radius: 2px;
margin: 10px 0px 0px 20px;
border-bottom: 3px solid #ff9915;
}

.warningBox td {
vertical-align: middle;
}

.warningBoxImageCell {
padding: 20px 10px 10px 10px!important;
}

.warningBoxText {
padding: 10px 20px 10px 10px!important;
}

Default Warning Box Markup

HTML
<table class="warningBox" cellpadding="0" cellspacing="0">
<tbody>
<tr>

<td class="warningBoxImageCell">

<img alt="Warning" src="/resources/Storage/YOUR-PROJECT-ID/warning.png"/>
</td>

<td class="warningBoxText">

Warning Box Text
</td>

</tr>

</tbody>
</table>