I have assigned a class to the column-header of a particular column. I use the following CSS to set the style:
th.foo {background-color: #339933 !important;
color: white !important}
This works correctly in IE9 and Safari, but only the font-color changes in Chrome; the background color does not change. So I believe the selector is correct. Does anyone know what is causing the Chrome issue?
th.foo {background-color: #339933 !important;
color: white !important}
This works correctly in IE9 and Safari, but only the font-color changes in Chrome; the background color does not change. So I believe the selector is correct. Does anyone know what is causing the Chrome issue?