I have a CSS style sheet provided by others that I am not allowed to alter. The problem I am having is that in the style sheet the following classes are defined, but I can't seem to refernce them.
.bg1 {background-color: #F5F5F5;}
.bg2 {background-color: #F5F5F5;}
.fg1 {color: #000000;}
.fg2 {color: #000000;}
In my PHP page I have loaded the style sheet and the body, hover etc predefines seem to work fine but I can not seem to reference these colors for table in the page? Any thoughts on what I may be doing wrong?
print "<tr class='bg2'><td colspan='2'><span class='fg2'><b>" .$ContextOne."</b></span></td></tr>";
-Pete
.bg1 {background-color: #F5F5F5;}
.bg2 {background-color: #F5F5F5;}
.fg1 {color: #000000;}
.fg2 {color: #000000;}
In my PHP page I have loaded the style sheet and the body, hover etc predefines seem to work fine but I can not seem to reference these colors for table in the page? Any thoughts on what I may be doing wrong?
print "<tr class='bg2'><td colspan='2'><span class='fg2'><b>" .$ContextOne."</b></span></td></tr>";
-Pete