I'm trying to hide the Border around the input on the PDF. Is there a way to achieve this with Custom CSS?
Hi Tom,
To specifically target the PDF using CSS you can use the .form-pdf
class in your selector. For example, the CSS below should work in most scenarios to hide the border form a component specifically in the PDF.
.form-pdf div{ border: none; }
Hi Tom,
To specifically target the PDF using CSS you can use the .form-pdf
class in your selector. For example, the CSS below should work in most scenarios to hide the border form a component specifically in the PDF.
.form-pdf div{ border: none; }