In other words Jerry (DDO Market) the following CSS file, which has & (ampersand) in the URI isn't being applied in Firefox.
https://drh.img.digitalriver.com/sto...File=style.css
That file of course would apply the main CSS styles like the background colour it's probably not the file that's wrong it's likely the occurrence of the ambiguous ampersands in the URI link.
For example:
In this fragment, the attribute's value is "?bill&ted":
Code:
<a href="?bill&ted">Bill and Ted</a>
In the following fragment, however, the attribute's value is actually "?art©", not the intended "?art©", because even without the final semicolon, "©" is handled the same as "©" and thus gets interpreted as "©":
Code:
<a href="?art©">Art and Copy</a>
To avoid this problem, all named character references are required to end with a semicolon, and uses of named character references without a semicolon are flagged as errors.