The code hides the elements with the class .kn-records-nav , all anchor tags, all list items, and all buttons when the page is printed
PS - I’m not a coder
This will hide on any page:
/* This CSS rule applies only when the page is printed */
@media print {
/* Hides the navigation records element when printing */
.kn-records-nav {
display: none; /* Prevents this element from being displayed */
}
/* Hides all anchor (link) and list item elements */
a, li {
display: none !important; /* Hides links and list items forcibly to ensure they are not printed */
}
/* Hides all button elements */
button {
display: none !important; /* Hides buttons in print view, ensuring they are not included in the printed output */
}
}
This will only affect a specific view_123:
/* This CSS rule applies only when the page is printed */
@media print {
/* Hides the navigation records element with class 'view_123' when printing */
.view_123 {
display: none; /* Prevents this element from being displayed */
}
/* Hides all anchor (link) and list item elements */
a, li {
display: none !important; /* Hides links and list items forcibly to ensure they are not printed */
}
/* Hides all button elements */
button {
display: none !important; /* Hides buttons in print view, ensuring they are not included in the printed output */
}
}
If you want to specify the scene then it would look like this:
/* This CSS rule applies only when the page is printed */
@media print {
/* Hides the elements with classes 'scene_567' and 'view_123' when printing */
.scene_567,
.view_123 {
display: none; /* Prevents these elements from being displayed */
}
/* Hides all anchor (link) and list item elements */
a, li {
display: none !important; /* Hides links and list items forcibly to ensure they are not printed */
}
/* Hides all button elements */
button {
display: none !important; /* Hides buttons in print view, ensuring they are not included in the printed output */
}
}
Not being a coder at all, I’m not sure if this will work but if you haven’t already tried ChatGPT, here’s an offered solution.
To apply the @page rule only to a specific Knack page (scene), you need to ensure that the print styles only apply when that page is active. Unfortunately, @page itself does not support class-based scoping, but you can control when it takes effect using JavaScript.
Solution:
Modify your CSS and use JavaScript to dynamically add a print-mode class to the body only when printing the specific scene.