Well, the error at least is as I suspected:
Error: foldercontent has no properties
Source File: http://www.chevelleinfo.com/toc.htm
Line: 49
with no space. But, that doesn't help us much. The fault lies in the html section, as replacing that with the demo's works fine. I see it, sloppy coding:
HTML Code:
<li><a href="body/intro.htm"><font size="1">Intrduction</a></font></li>
besides misspelling 'Introduction', is wrong, IE will tolerate it but not FF, it should be:
HTML Code:
<li><a href="body/intro.htm"><font size="1">Introduction</font></a></li>
In a nutshell, always close the innermost tag first.
Don't forget this one:
HTML Code:
<li><a href="etr/engines/aircleaner.htm"><font size="1">Air Cleaners</a> (ALL)</font></li>
as it will be skipped in a global search and replace*.
Finally, you must close all tags for FF. This means you need one more:before:
HTML Code:
<li><a href="elcamino/main.htm"><font size="1">Place Holder</font></a></li>
Of course, this means your place holder will show up but, you could comment it out or get rid of it.
* search for:
</a></font></li>
replace with:
</font></a></li>
Bookmarks