I am currently trying to change the javascript scheduler's grid color and change the margin within events for the duration bar, and neither of these seem to have working css settings.
For the event duration bar margin, I was expecting the following to do the trick(as per the css designer):
.scheduler_default_event_bar
{
top: 1px;
left: 1px;
right: 1px;
}
but this did not accomplish anything(the duration bar still overlaps with the event border)
For the grid's color, I was expecting the following to do the trick(as per the css designer):
.scheduler_default_matrix_vertical_line,
.scheduler_default_matrix_horizontal_line
{
background-color: #000000;
}
but the grid's color remains the same.
What am I missing? Are there other calls intervening with these settings?