On this page at the bottom in the form to add comments, I have a set of hidden HTML inputs. Works fine, except on IE.
In IE, they take space and move the form down. I suspect it is because there are generic CSS rules for input, but I'm not 100% sure. If that's the case, how do I make it so that input types "hidden" don't get affected by CSS rules? If that's not it, then what's going on?
input[type=hidden]and then set.hidden(assuming that's the class name) todisplay: none;. It should work but I haven't tested it.