@keesjan I put it in function.php of mine theme. But be carefull with theme updates if you are using third part theme or default theme.
If you have your own plugin for the site it’s another good place.
Hi,
resolved with
add_action('admin_init', 'admin_init');
function admin_init() {
wp_deregister_style('yui-pure');
}
This broke the style of plugin’s settings page.
For the developer i suggest to handle the right sidebar in a different way instead include generical library…
Bye