I have the following in my style
<style>
th {background-color:royalblue ;
color:white;}
tr {color:green;}
tf {background-color:red ;
color:white;}
</style>
The header works fine and appears in blue. But the footer does not appear in red. Please tell me why
Table::create(array(
"dataStore"=>$this->dataStore("srat")->filter("taxyear","=",$_SESSION['last_TY']),
"showHeader"=>true,
"showFooter"=>true,
"columns"=>array(
"taxyear",
"employee_email",
"employee_title",
"cost_center_name",
"w2_wages"=>array(
"cssStyle"=>"text-align:left",
"prefix"=>"$",
"footer"=>"sum",
"footerText"=>"<b>Total Wages:</b> @value"
),
"consultant"=>array(
"formatValue"=>function($value) {
return ($value==1)?"Yes":"No";
}
),
"qualified_dollars"=>array(
"cssStyle"=>"text-align:right",
"prefix"=>"$",
"footer"=>"sum",
"footerText"=>"<b>Total Wages Qualified:</b> @value"
)
),
"cssClass"=>array(
"table"=>"table-bordered table-striped table-hover",
)
));