I'm using the Zone Lookup App and would like to hide the "Results" count element from the export to PDF print output. What custom CSS can I use to accomplish this?
Solved! Go to Solution.
You can hide the result count using the following:
@media print{ .print-results{ display:none; } }
One easy way to see the styles that apply when the export pdf options is clicked is to run the app, select the results then use the browser dev tools to emulate the print CSS media type. Once you do this you can use the dev tools inspection tools to see the rendered elements and their styles. Here's info on how to enable print view in Chrome.
You can hide the result count using the following:
@media print{ .print-results{ display:none; } }
One easy way to see the styles that apply when the export pdf options is clicked is to run the app, select the results then use the browser dev tools to emulate the print CSS media type. Once you do this you can use the dev tools inspection tools to see the rendered elements and their styles. Here's info on how to enable print view in Chrome.