Join the Team Forms community

Updated 3 months ago

Hide Input Border in PDF

At a glance

A community member is trying to hide the border around an input on a PDF using custom CSS. Another community member suggests using the .form-pdf class to target the PDF specifically, and provides the CSS to hide the border. The community member thanks the response, and another community member asks if it's possible to remove the background from the signature component in the PDF as well.

I'm trying to hide the Border around the input on the PDF. Is there a way to achieve this with Custom CSS?

Marked as solution

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.


CSS
.form-pdf div{
    border: none;
}
View full solution
E
T
2 comments·1 reply

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.


CSS
.form-pdf div{
    border: none;
}

Thanks Erin

This comment has been deleted.