On Tue, 23 Oct 2001 04:01:52 -0400 (EDT), Thomas Mueller wrote: > This Web site shows just a little bit in Arachne, no links, just a few short > text lines (graphic mode). I saved with F2, noticed a FRAMESET, but Arachne was > successful displaying frames in some other Web sites. There was no Javascript.
This page uses FRAMESET in a way that seems to be incompatible with Arachne (and a bit non-standard according to my knowledge about HTML). It uses ROWS="..." AND COLS="..." in single FRAMESET tag. When I changed this into nested framesets as below, everything works. (I added frame names for clarity). New "http://www.aromamedical.demon.co.uk/": --------------------------------------------------------------------- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head><title>Aromatherapy Publications & Training Services UK</title></head> <frameset rows="79,*" border=0> <frameset cols="120,*" border=0> <frame name="tl1" src="tl1.html" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" border=0> <frame name="topbar" src="tr1.html" marginwidth="0" marginheight="10" scrolling="no" frameborder="0" border=0> </frameset> <frameset cols="120,*" border=0> <frame name="menu" src="menu.html" marginwidth="0" marginheight="0" scrolling="auto" frameborder="0" border=0> <frame name="main" src="main.html" marginwidth="10" marginheight="10" scrolling="auto" frameborder="0" border=0> </frameset> </frameset> </html> --------------------------------------------------------------------- Greetings, Michal
