# Override style/templates

The Questalk pro is compatible with any WordPress site. However, for seamless integration with your site's style, a few adjustments may be necessary.

Here's how to customize the plugin:

1. Create a new folder named 'emqa-templates' in your theme directory.
   * Navigate to wp-content/themes/your-theme via FTP/Cpanel/localhost.
   * Create the 'emqa-templates' folder.
2. Copy and paste the desired files into the 'emqa-templates' folder.
   * Visit wp-content/plugins/emo-questalk-pro/templates.
   * Select the file you wish to customize.
   * Copy the selected file into wp-content/themes/your-theme/emqa-templates."

This version streamlines the instructions and clarifies the steps for customization.

1. Add the following code to the functions.php file \
   To customize the style, follow these steps:

```
/* load style for EMO Questalk Pro plugin */
if( !function_exists('emqa_dom_amor_scripts') ){
function emqa_dom_amor_scripts(){
wp_enqueue_style( 'em-dom-amor-qa', get_stylesheet_directory_uri() . '/emqa-templates/style.css' );
}
add_action( 'wp_enqueue_scripts', 'emqa_dom_amor_scripts' );
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://emohelp.gitbook.io/emo-questalk-pro/override-style-templates.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
