
-
AuthorPosts
-
August 18, 2020 at 6:52 pm #1238847
Dear Support Team,
when attempting to print webpage content, only the first page is generated. The cookie guidelines are printed on the second page, although the function is deactivated in the backend.-
This topic was modified 4 years, 11 months ago by
Volker.
August 18, 2020 at 9:18 pm #1238919It seems that there is a problem with the child theme. If I switch to the parent theme, the problem doesn’t exist. What could be the cause of this?
August 19, 2020 at 5:30 pm #1239227The solution for the displayed cookie guidelines in the print preview is available here in the forum.
@media print { .avia-cookie-consent-wrap { display: none !important; }}
I also found out that the problem only exists in Firefox because of a page limitation. Is there a solution for this? I am amazed, that all pages are generated with the parent theme and only one page is generated with the child theme.
Could it be, that I need to add a setting somewhere?
-
This reply was modified 4 years, 11 months ago by
Volker.
August 23, 2020 at 3:44 pm #1240117After a long search I found it by myself. Without any support!
There is a problem with the header and the positioning. That is why only one page is generated. So no limitation of the Firefox browser!After adding the following CSS code to the quick CSS, now all pages are generatet.
@media print { #header { position: relative !important; }}
But one little thing bothers me now: On the first page there is only the header and the content starts on the second page.
Even if I don’t think I’ll get any answer here, I hope for a solution to my problem.
August 23, 2020 at 9:43 pm #1240208Hi,
Sorry for the late response but glad that you managed to solve the initial issue. Now to remove the space below the header on print preview, please try to include this css code inside the print media query that you added previously.
.html_header_top.html_header_topbar_active.html_header_sticky.html_large #top #main { padding-top: 0; }
Let us know how it goes.
Best regards,
IsmaelAugust 24, 2020 at 3:47 pm #1240383Hello Ismael, that does the trick. Thank you very much!
For posterity and wrap-up:
1. If you have a problem with printing long Website Content in your Firefox browser or only one page is showing, put the following two CSS snippets in your Quick CSS:
@media print { .html_header_top .html_header_sticky #header { position: relative !important; } }
@media print { .html_header_top .html_header_topbar_active .html_header_sticky .html_large #top #main { padding-top: 0; } }
2. If the cookie guidelines will be printed and you don’t wish that, put the following snippet in your Quick CSS Window:
@media print { .avia-cookie-consent-wrap { display: none !important; } }
Thank you for your support. :)
-
This reply was modified 4 years, 11 months ago by
Volker.
August 24, 2020 at 10:54 pm #1240537Hi,
I’m glad this was resolved for you. If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon -
This topic was modified 4 years, 11 months ago by
-
AuthorPosts
- The topic ‘[SOLVED] Web page content can only be printed to a limited extent.’ is closed to new replies.