01/30/2015 at 3:19 pm
#317640
Keymaster
@ Rolando
This should work for changing the title:
#cn-gridder .cn-gridder-overlay .title {
font-size: 8px;
color: red;
}
Depending on the order the CSS get loaded you might have to use the !important
flag, like so:
#cn-gridder .cn-gridder-overlay .title {
font-size: 8px !important;
color: red !important;
}
Hope that helps!