How do I embed the footer on every page in the multi-page PDF?

How do I embed the footer on every page in the multi-page PDF?

In order to place the footer on every page in the multi-page PDF, please go to Marketing > PDF Templates > open the template and add the following code at the beginning of the <body>:

<div class="footer">  
   <p>Footer</p>
</div>
      
Once done, apply additional styles in the Template Styles block:

.footer {
   position: fixed; left: 0; right: 0; height: 70px; width: 100%;
   background-color: red; color: white; text-align: center; z-index: 1;bottom: 0;
}