CSS to change the background color of notes?

Hi,
could someone help me with a CSS sampel to change the background color of notes?

The following code changes the background color of the TEXT and not of the “box” that is shown arround the notes…

ul.comments div.coreNote {
  background-color: #dimgrey; 
}

Thanks
Chris

I think I found it out myself :thinking:

Is this correct - it seems to work

ul.comments li.comment {
background-color: #2D2D2D;
}

1 Like