Einstein47
Programmer
I am trying to move all the color definitions for my site from hardcoded to a stylesheet. Everything works fine in IE when I do
both the background and text are the correct colors.
This is my "header" class definition:
However, in Mozilla everything comes up black. You can only read the text when you select it with the mouse. Is there some trick to make Mozilla use the color definitions for table cells that you put in the CSS class? Einstein47
("If computers ever get too powerful, we can organize them into a committee - that will do them in." - Unknown)
Code:
<TD class="header"> ... </TD>
This is my "header" class definition:
Code:
.header {
color: black;
background: #ffc800;
background-color: #ffc800;
}
However, in Mozilla everything comes up black. You can only read the text when you select it with the mouse. Is there some trick to make Mozilla use the color definitions for table cells that you put in the CSS class? Einstein47
("If computers ever get too powerful, we can organize them into a committee - that will do them in." - Unknown)