I am using a print style sheet to remove borders and scroll bars from my form. While this style works for textareas, it does not remove the arrow from a select tag.
I’m not really clear on what the issue is. Are you trying to style this form so that it can be printed? If I try to print it, I don’t see any scroll bars anywhere.
Perhaps Javascript could help you with this? I don’t know the limitations of it, and I doubt the scope of JS could go so far as to manipulate the browser, but you could look something up :).
i also posted this in the Javascript section.
The solution is to use javascript to populate a <span> with the information in the select tag.
Use classes to display the <select> on screen and display:none @media print.
Use classes to display:none the <span> and display @media print.
I’ve used javascript on this form to do just that with the “right header”. The "student name, student ID, date, and page___ of ___ " print but are not displayed on screen.