Description

Place desc elements below the titles in figure elements and image elements.

Overview

Figure 1. Table Description
table description overview
Figure 2. Figure Description
figure description overview

Common Customizations

You can apply customizations by pasting the following code snippets under the @import rules.

Shrink figure and table descriptions
images description smaller
JSON
/* Shrink figure and table descriptions. */
.figdesc,
.tabledesc,
.figdesc *,
.tabledesc * {
  font-size: 14px !important;
}
Add a border to figure and table descriptions
add border to figure title and description
JSON
/* Add a left border to figure and table descriptions. */
.figdesc,
.tabledesc {
  border-left: solid 5px #dcdcdc;
  padding-left: 10px;
}