Panels
Remark enhances HighQ Publisher's already flexible and extensible content container. By default, the panels option, by itself, just applies some basic border and padding to the content containers.
<script>
$js(function () {
$js('body').remarkable({
panels: true
});
});
</script>

Easily make all panels more meaningful by adding any of your own CSS to style the panel headings.
.remark-pretty-panels .MainTitle {
background-color: #28a745;
}
.remark-pretty-panels .Titletxt {
color: #fff;
}

Last updated
Was this helpful?