I have also had a problem with the update, a lot of the CSS throughout my site has gone bad. Deactivate the plugin and it is fine straight away. I guess for now I will have to roll back.
Hi Jacob,
Thanks for your reply, no I haven’t added any code, just the standard stuff below for creating a child theme.
<?php
add_action( ‘wp_enqueue_scripts’, ‘my_theme_enqueue_styles’ );
function my_theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
}
?>