Hi @vmooren
I hope you are doing well. Thanks a lot for using our plugin and reporting the issue. I have found that you are using the Business Pro theme here.
Business Pro theme enqueues?line-awesome.min.css
?file, which uses font awesome icons classes but not all the CSS of font awesome icons that create conflict with the main font awesome file.
So using the below code, you could deregister the CSS file, which will solve your problem. Please paste the below code on your function.php
file.
add_action( 'wp_enqueue_scripts', 'business_pro_remove_stylesheet', 99 );
function business_pro_remove_stylesheet() {
wp_dequeue_style( 'business-pro-icons' );
wp_deregister_style( 'business-pro-icons' );
}
Let me know how it goes now.
Thank You.
Have a nice day.