You are viewing limited content. For full access, please sign in.

Question

Question

Remove Pagination page titles from saved repository PDF using Modern Designer

asked on June 15, 2023 Show version history

Hey guys,

Just wondering if it is possible using some CSS or other function, to hide the pagination page titles from the saved repository PDF/TIFF and/or sending the form as email, using the modern forms designer?

Thanks!

1 0

Answer

SELECTED ANSWER
replied on June 20, 2023 Show version history

If this is, the css I use is :


 fl-page.pane > label.section-label {
    display: none;
}

 

3 0

Replies

replied on June 20, 2023

Hi Jay, is the behavior what you expect?

Before:

 

After:

0 0
SELECTED ANSWER
replied on June 20, 2023 Show version history

If this is, the css I use is :


 fl-page.pane > label.section-label {
    display: none;
}

 

3 0
replied on June 20, 2023

That worked perfectly, thank you!

Can I assume anything inside this query, would affect how the CSS of how pages are printed or is it a more than that?

@media screen {
    fl-page.pane {}
}

 

0 0
replied on June 21, 2023

Actually, I made a mistake. 

 

@media screen

is not necessarily here. The css inside it will still apply when you normally open a form.

fl-page.pane > label.section-label 

works only in save to repository or email service because it is a different html structure between print mode and normal mode for a form.

3 0
You are not allowed to follow up in this post.

Sign in to reply to this post.