Skip to main content
Participant
September 17, 2021
Question

Header/Footer customization in power automate

  • September 17, 2021
  • 1 reply
  • 2072 views

Hello,

 

I am using the adobe PDF service connector from Power Automate to convert an HTML file to PDF.

It works great, but I don't know how to customize the header and footer.

 

Anyone have a solution?
Thank you.

This topic has been closed for replies.

1 reply

Ben Vanderberg
Community Manager
Community Manager
September 17, 2021

Hi @Cooperative5CEE ,

 

If you are generating from HTML, your best bet is to use CSS media queries. 

 

<div class="footerText">My Footer Text</div>

 

@media screen {
  div.divFooter {
    display: none;
  }
}
@media print {
  div.footerText {
    position: fixed;
    bottom: 0;
  }
}

 

If you do that, then you would set Include Header Folder to false.