I want to be able to set header and footer only for page 2 and following #74
-
The administrator shall be able to configure the exporter to start the header and footers from page 2. We have a custom document front page, which does not require a header and footer for this front page. Is there a way to configure the CSS to make this happen? |
Beta Was this translation helpful? Give feedback.
Answered by
Jumas
Jul 11, 2024
Replies: 1 comment
-
Hi HarryJulsing, you can achieve this just by adding following css in the settings: @page :first {
border-bottom: none;
@top-left {
content: "";
}
@top-center {
content: "";
}
@top-right {
content: "";
}
@bottom-left {
content: "";
}
@bottom-center {
content: "";
}
@bottom-right {
content: "";
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
grigoriev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi HarryJulsing,
you can achieve this just by adding following css in the settings: