I purchased the DW Answer Question Pro plugin from your recommendation. Wondering now about what you are using to display the "Ask A Question" and "SUBMIT" green buttons? Also, are you using the WPForms rather than Designwall's form? Yours is so much cleaner. The built-in DW form has the extra Filter options I would rather not see. Your layout and navigation is what I am very much trying to mimic because of the simplicity uncluttered look. Only thing missing is a spell check :(
MaxButtons Plugin :) for the button, but are there other tricks to share? WP101 site is so clean and professional, I would dearly love to integrate a similar look.
Examples: how do you hide Status, Category, Tag, fields on the /ask-question/ page?
Found the answer here:
https://www.designwall.com/guide/dw-question-answer-plugin/style-integration/
Was able to create dwqa-templates directory and then edit question-submit-form.php
Looks like you found out how to customize DWQA using the templates. I also use a bit of custom CSS to style all buttons and fields on my site. That custom CSS is saved in my theme's style.css file.
For example, here is the CSS I use for my buttons:
button {
box-shadow: inset 0px -3px 0px 0px rgba(0, 0, 0, 0.1);
background-color: #59B285;
border-radius: 3px;
border: none;
color: #fff;
cursor: pointer;
font-size: 16px;
font-weight: 700;
letter-spacing: 2px;
line-height: 1;
padding: 16px 24px;
text-align: center;
text-transform: uppercase;
width: auto;
}
Hope this helps point you in the right direction!
Most excellent. Thank you for sharing the CSS. Almost got mine looking clean and owe it to your references.
?