Hi Judy, The first error can be fixed by simply removing the "scroll" attribute from the body element: scroll="auto" "Scroll" is a IE-only attribute. I don't think the setting is important for your pages, because they are long enough to always display scroll bars. References: http://www.htmlcodetutorial.com/document/_BODY_SCROLL.html http://msdn2.microsoft.com/en-us/library/ms534393(VS.85).aspx The second error can be fixed by removing the "border" attribute from the input elements: border="0" "Border" for input elements is a Netscape-only attribute. It seems to be defaulted to zero in recent versions of Firefox. Reference: http://www.htmlcodetutorial.com/forms/_INPUT_BORDER.html If some browsers show borders around input images, they can probably be eliminated with some CSS like: input { border: none; } Cheers - ChuckReceived on Wednesday, 5 March 2008 13:17:03 GMT
This archive was generated by hypermail 2.2.0+W3C-0.50 : Monday, 7 December 2009 10:57:27 GMT