• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Header/Footer customization in power automate

New Here ,
Sep 17, 2021 Sep 17, 2021

Copy link to clipboard

Copied

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.

TOPICS
PDF Services API , Power Automate

Views

1.2K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Sep 17, 2021 Sep 17, 2021

Copy link to clipboard

Copied

LATEST

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. 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources