Is there anyway to remove these items (other than css)? We want to print this page.

-
1,508 Points
Posted 3 years ago
Mark DeSimone, Official Rep
-
12,352 Points
Hi Anna, there's not a declarative way to specify print styling. To do this, you would need to set up custom CSS on your page that targets only print media. You'd need to find out the CSS class that applies to the checkboxes, and whatever elements you want to hide, and then add a CSS resource to the page that looks something like this:
@media print {It'll take a little experimenting, but it should be doable if you've got some familiarity with CSS.
.your-css-class-here {
display:none;
}
}
-
1,508 Points
Here is the element. Will you help me with the css for the checkboxes? I have the other css worked out.


Mark DeSimone, Official Rep
-
12,352 Points
It looks like you can hide the whole first column with this:
table.nx-list tr td:first-child { display: none; }
-
1,508 Points
For others who are interested, here is the css to hide the count at the bottom of the table.
.nx-list-footer { display:none;
}
.nx-list-footer { display:none;
}
-
1,508 Points
-
1,508 Points
We figured it out:
.nx-editor input[type=checkbox] {
display: none;
}
.nx-editor input[type=checkbox] {
display: none;
}
Mark DeSimone, Official Rep
-
12,352 Points
Great! I just tried this and the option I posted above, and the other option also appears to hide the empty column, in case that's relevant for you.
Related Categories
-
Skuid on Salesforce
- 2730 Conversations
- 224 Followers