Notifications
Clear all
Topic starter
23/04/2017 7:26 am
Hi,
How do I go about changing the text, border and box fill colour of the custom comment form fields once my comment is posted?
The settings/styling does not allow me to change the colour of the areas circled in the attached picture.
Appreciate all your help.
23/04/2017 8:51 am
You can use custom CSS. We can't add styling option for each component of wpDiscuz. Just put a custom CSS in Custom CSS Textarea (Comments > Settings > Styling Tab). For Example:
Custom Filed Label
#wpcomm .wpd-cf-label {
background: #dd0000;
color:#ffffff;
border-bottom: 1px solid #aa0000;
font-size: 13px;
width: 29%;
}
Custom Filed Value
#wpcomm .wpd-cf-value {
background: #eeeeee;
color:#555555;
border-bottom: 1px solid #f0f0f0;
font-size: 13px;
width: 69%;
}
CSS Tutorial: https://www.w3schools.com/css/
Topic starter
23/04/2017 10:33 am
Excellent, just what I was after.
Thank you very much