Quote:
|
Originally Posted by ClevelandSlim
Thanks for the info man. One question... will this work for form items such as text input boxes, checkboxes, and radio buttons?
~Slim~
|
yep
input type="text" class="noprint"
or if you want it with all input things
[style type="text/css" media="print"]
input, select, textarea {
visibility:hidden;
}
[/style]
You could also put the part you dont want to print in a table with the class noprint
table border="0" cellpadding="0" cellspacing="0" class="noprint"
or put these around it :
[span class="noprint"]
non printable content goes here
[/span]
(and like always, change the [ and ] into the html brackets)