Hi @ryanbester77,
I had a look at the site you linked but I don’t see the SearchWP Live Ajax Search working on the search form that opens when clicking on the magnifying lens.
SearchWP Live Ajax Search works out of the box with the native WordPress search forms but not with the Elementor search widget.
For it to work with the Elementor search form please add the class “swp-live-ajax-form” to the Elementor form settings.
Then add this code to your site functions.php: https://gist.github.com/BrElio/0aa7b045becd4fd572b10bee4e1307f3
This should make the Live Ajax Search work with any Elementor form with the above class.
The plugin doesn’t style the results link color and it inherits the styles from the site styles.
While there are no options to style the background and text colour, you can add custom CSS to your site to do that:
.searchwp-live-search-results {
background: white;
}
.searchwp-live-search-result a,
.searchwp-live-search-result a:visited {
color: blue;
}
I hope this helps but if there is something unclear let me know!