Hide a footnote call

You can also apply a style to footnote calls with specific attributes. For example, use the following style to hide a footnote with the IDs:
The footnote call is hidden in the main content, but the footnote marker appears at the bottom of the page.

.fn[id]::footnote-call {
        display: none;
                        }

Format the footnote area

The footnote area is where all footnotes are placed, generally at the bottom of a page. You can format the footnote area using the page layouts or CSS styles.

Page layouts

You can use the page properties for page layouts to style the footnote area in the different sections in a PDF document. For example, you can specify the margins and padding properties of the footnote area in a chapter. You can also change the border side, style, color, width, and radius.

Learn about how to work with the page properties of a page layout.

CSS styles

You can apply styles and format the footnote area in a PDF document. For example, you can change the border length, style, color, and width.

   @page {
     @footnote {
        border-top-style: solid;
        border-top-color: #FF0000;
        border-top-width: 3px;
                }
         }

Restart the numbering of footnotes

By default, the footnotes are numbered continuously in a document. However, you can use page layouts or CSS styles to restart the numbering of footnotes.

Page layouts

You can specify a number in the page layouts to restart the footnote numbering in the different sections in a PDF document. For example, select a number from the Restart numbering from field in the Page Properties panel to restart the footnote numbering for each chapter.