Gretyl's Portal

Heretto Help

Description

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

Overview

Resource location:@import url("https://jorsek.github.io/pdfgen.github.io/styles1.1/modules/dita/description.css");
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
/* 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
/* Add a left border to figure and table descriptions. */
.figdesc,
.tabledesc {
  border-left: solid 5px #dcdcdc;
  padding-left: 10px;
}