On Sat, 1 Jul 2006 15:27:31 +0000 (UTC), "paiwacket"
<webforumsuser (AT) macromedia (DOT) com> wrote:
Quote:
A nested tabele shows fine in IE, but FF http://www.cbrc.us/Results-VFTT.html
I recall a tech bulletin from Macromedia re. this issue, but cannot locate it.
How can I fix this? Thanks, -Pai |
I'm seeing the same content in both IE6 and Firefox 1.5 on Win2k.
However, you have a couple of errors in your style sheet that are
messing with the page styling:
This:
hr
color: #ddd;
}
Should be this:
hr {
color: #ddd;
}
And this:
###########################
ol li {
Should be:
/* ########################### */
ol li {
You should also validate your HTML:
http://tinyurl.com/rwbt6
Gary