Forum Moderators: open
<table border="0" cellspacing="0" cellpadding="1" bgcolor="#033" width="100%">
works as expected (dark green) when served from the localhost, but shows black when served from the remote host. Four different browsers (Opera, Firefox, IE, Safari) on the Mac client have the same behavior. Viewing the source shows no difference in the markup on the client. Changing the color code to #003333 on the remote site fixes the problem. What is happening here?
The use of HTML elements and attributes for specifying color is deprecated. You are encouraged to use style sheets instead. [...]
Colors specified with the BODY and FONT elements and bgcolor on tables look different on different platforms
[w3.org...]
You don't have a different DOCTYPE by any chance do you?
And as folks have already mentioned, you shouldn't be designating color anywhere in your HTML anyway.
Tom