Join the Team Forms community

Hide Input Border in PDF

Updated 3 weeks ago

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.