How do I change the colour of the background of the panels on which my users’ Comments are displayed please?
Add this to your custom styles:
.comment-body {
background: #f9f9f9;
}
Of course, replace #f9f9f9
with the color code you want to assign to the comments background.
-
This reply was modified 11 years, 10 months ago by Daniel Tara.
Excellent – many thanks. I would love a list of these little pieces of code, as I am discovering them one by one!