The “Your Answer” text in the Ask Question form (in Q and A plugin integrated in DW HelpDesk) is overlapping.
How to fix this? here’s the screenshot:
1 Answers
You can add the following code to the style.css file:
.single-dwqa-question .dwqa-answer-form-title {
margin-bottom: 0;
}
It doesn't fix the issue if I don't use !important. That code also resides here in ../wp-content/themes/dw-helpdesk/assets/css/dw-helpdesk.min.css
I simply remove this code below in that css file (dw-helpdesk.min.css):
.single-dwqa-question .dwqa-answer-form-title {
margin-bottom: -36px;
}
And it worked. Consider this issue RESOLVED.
Thanks for the help bro.
Yes. In this case, you should use “!important”, you should not remove the CSS code from the min.css file.
Please login or Register to submit your answer