Print on web without input boxes

I have a web application where I want the users to be able to create a new document, put some information in it and before they submit it print it out in a nice layout. I have made a css for printing and I´m almost there except that I don´t want the input boxes to be printed, I just want the text in them. How do I do this the best way? I have tried to add fields computed for display but then I need to refresh the whole document before printing it, and it´s quite many fields.

Thanks in advance

Charlotta

Subject: Print on web without input boxes

Did you try to use in your print css a statement like this :

input { border : 0px;}

With this you don’t remove the fields but just the border, but when it’s printed you should see no difference ! ;-))

Hope this helps

Renaud

Subject: RE: Print on web without input boxes

Hi Renaud!

No, I didn´t try that. Didn´t thought about that sollution. I´m not really familiar with all attributes yet. I´m sure it will work. Tanks a lot!