I discovered recently that Firefox3 did not render my site properly, due to CSS. I checked other zen-cart sites (from the showcase) and discovered that we all suffer the same problem.
I noted the problem here:
http://support.mozilla.com/tiki-view...parentId=60098
...but since found evidence that the problem may be more widespread than just Firefox.
The upshot is that the 'body' style, which defines:
font-size: 62.5%;
is not inherited by TD cells. Font sizes in table cells render at the browsers default size, which in Firefox is 16pt.
The workaround I have found that works best is to do this. Add the following line:
font-size:1em;
immediately before the font-size:62.5%; in the body style class. This seems to cure the problem in Firefox, and works OK in IE too.



