View Single Post
  #2 (permalink)  
Old 12-10-2007, 07:35 PM
DaveSawers's Avatar
DaveSawers DaveSawers is offline
WebProWorld Veteran
 
Join Date: Dec 2006
Location: Calgary, Alberta, Canada
Posts: 492
DaveSawers RepRank 3DaveSawers RepRank 3
Default Re: Need Your Eyes - Puzzle Table Fields

They look a right mess on my installation of IE7.

Using Firefox, look at the errors it finds in the HTML and fix them and I think you'll find it works a lot better in IE7. If you don't have the code checker addon for Firefox, get it (and use it).

For example, your textarea is coded as:

Code:
<textarea cols=80 rows=6 readonly><a href="" target="new"></a> - </textarea>
which on its own generates four errors! It should be coded as:

Code:
<textarea cols="80" rows="6" readonly="readonly"><a href="" target="new"></a> - </textarea>
__________________
Dynamic Software Development
www.activeminds.ca
Reply With Quote