The DW Question & Answer plugin can work well on any WordPress site, however, in order to get the plugin fit well in the style, we will need to override a bit.

1. Create “dwqa-templates” folder
Go to the wp-content/themes/your-theme folder from FTP/Cpanel/localhost, create a new folder named “dwqa-templates”.

2. Copy/paste the files into “dwqa-templates” folder
Navigate to the /wp-content/plugins/dw-question-answer/templates, select the file you want to override the style, then copy the file into /wp-content/themes/your-theme/dwqa-templates.

getkey-captcha

If you want to override Style, you can add the following code to the functions.php, and create the style.css file in the “dwqa-templates” folder. /* load style for DW Q&A plugin */
if( !function_exists('dwqa_dom_amor_scripts') ){
function dwqa_dom_amor_scripts(){
wp_enqueue_style( 'dw-dom-amor-qa', get_stylesheet_directory_uri() . '/dwqa-templates/style.css' );
}
add_action( 'wp_enqueue_scripts', 'dwqa_dom_amor_scripts' );
}