Hello, I'd appreciate some CSS help for changing the color of the reply to author name (I want it to be something other than blue) and the highlight voting buttons for voters (something other than red).
Thanks much!
Hi,
The CSS code:
#wpdcom .wpd-comment .wpd-reply-to a {color: #000;}
For the like button, use this one:
#wpdcom .wpd-up svg{
fill: #000 !important;
}
Insert the code in the "Custom CSS code" textarea, located in the Dashboard > wpDiscuz > Settings > Styles & Colors admin page.
The red-marked value can be changed as you like.
Thank you!