I had the same issue after plugin update. It seems that the plugin’s css overrides the theme’s one. I have this issue in particular with the file jquery-ui-1.9.1.custom.css which is loaded after my theme’s style. I don’t know what is changed with the last version, i solved the problem in my theme adding a dependency to my wp_enqueue_style function like this:
wp_enqueue_style('child-style',
get_stylesheet_directory_uri() . '/style.css',
array('parent-style', 'jquery-ui'),
wp_get_theme()->get('Version')
);
hope it helps
Chiara
-
This reply was modified 6 years, 2 months ago by Chiara Aiola.
-
This reply was modified 6 years, 2 months ago by Chiara Aiola.