I need to change the color of the font of Discuz. Somehow it is yellow. It seams it is getting a yellow collor from my theme, but i cannot find from where. It isnt in the additional css.
So , as a workaround, i am using this:
body.ctypo p {
color: #24272e;
}
but that changes the color of all the font. Because of that, i am having issues with the Widgets.
Is it somehow possible to link the css to discuz only? F.i., when i want to change the colors of a specific post, i type .post-xxxx
I dont see a way to do that for Discuz.
I tried adjusting the standard style settings in Discuz, but that didnt change a thing.
Many thanks.
Hi @rjk,
Please navigate to Dashboard > wpDiscuz > Settings > Styles & Colors admin page, find and change the value of the "Comment Text" option.
More info here: https://wpdiscuz.com/docs/wpdiscuz-7/plugin-settings/styles-and-colors/#style-specific-colors-default-and-dark
If somehow the color doesn't change, use the CSS code below:
#wpdcom .wpd-comment-text {
color: #0c0c3f !important;
}
Put the code in the Top Admin Bar > Customize > Additional CSS > "Additional CSS" textarea, save it, delete all caches and check again.
Please don't forget to press Ctrl+F5 (twice) on the frontend before checking.