Join the Team Forms community

N
D
M
T
T

Hide Input Border in PDF

Updated 17 hours ago

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

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

Is it also possible to remove the background from the signature component in the PDF?