View Single Post
Old March 15th, 2003, 12:53 AM     #2 (permalink)
^hyd^
Senior Member
 
Join Date: Oct 2001
Location: Alberta, Canada
Posts: 563
I seem to remember this as being one of those stupid "quirks" that I ran into a long time ago...
try removing any spaces between the tags.

for example: (note the red sections)

Code:
<TD>< A HREF="rules.html"
      ONMOUSEOVER="menuSwap('rules', 'rules2');"
      ONMOUSEOUT="menuSwap('rules', 'rules1'); ><IMG 
      SRC="images/menu_rules1.gif" WIDTH=118 HEIGHT=37 
      BORDER=0 ALT="Rules" NAME=rules></A></TD>

instead of:

<TD>
  < A HREF="rules.html"
       ONMOUSEOVER="menuSwap('rules', 'rules2');"
       ONMOUSEOUT="menuSwap('rules', 'rules1');">
       <IMG SRC="images/menu_rules1.gif" WIDTH=118 HEIGHT=37 BORDER=0 ALT="Rules" NAME=rules>
      </A>
  </TD>
I know it makes for ugly code, so indent as you would like... not sure if it'll fix it, but giver a try!

Cheers!
^hyd^ is offline   Reply With Quote