Jun 16, 2020 4:27 pm
I had previously received help and it was working until the update.
Link to previous post: https://gvectors.com/forum/wpdiscuz-comment-plugin-support/how-to-expand-background/
The URL seems to be dead. How do I implement the same again and change the background color to #080D37
Website Link
4 Replies
Jun 17, 2020 8:04 am
Hi @abe675,
Use these CSS codes
#comments {
margin: 0 auto;
max-width: 100%;
width: 100%;
background: #080d37;
}
#wpdcom.wpd-layout-2 .wpd-comment.wpd-reply .wpd-comment-wrap{
background: #080d37 !important;
}
#wpdcom .ql-container {
background: #6b6b6b;
}
input[type=email], input[type=number], input[type=password], input[type=reset], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
background: #6b6b6b;
}
#wpdcom .ql-toolbar {
background: #ccc;
}
#wpdcom .ql-toolbar .ql-stroke {
stroke: #5f3131 !important;
}
Above provided CSS codes are examples that values you can charge to make it fits your websites.
Jun 17, 2020 8:37 am
Thank You so much.
How to change text color of comments and inside the ql-container / editor?
Jun 17, 2020 9:16 am
Thank you again