Re: CSS Change font colour
Posted by
Hugo <Nabble> on
Feb 17, 2011; 5:01pm
URL: https://support.nabble.com/CSS-Change-font-colour-tp6033124p6036710.html
You can try adding a translucent background to those cells.
.nabble table.main td span {
background-color:#000;
opacity:.60;
filter: Alpha(opacity=60);
}
Does this work for you?