Title: Remove inline styles?
Last modified: February 18, 2017

---

# Remove inline styles?

 *  [nbordeau](https://wordpress.org/support/users/nbordeau/)
 * (@nbordeau)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/remove-inline-styles-2/)
 * I am trying to clean up my Woocommerce implementation and notice that your plugin
   adds this:
 * `wp_add_inline_style( 'yith-quick-view', $inline_css );`
 * Is there any work around to remove those styles so we can just add styling to
   our css?
 * Thanks

Viewing 1 replies (of 1 total)

 *  Plugin Author [YITHEMES](https://wordpress.org/support/users/yithemes/)
 * (@yithemes)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/remove-inline-styles-2/#post-8917481)
 * Hi,
    the way to remove this inline style is to dequeue style with this handler“
   yith-quick-view” and enqueue it later with a different handler. So something 
   like
 *     ```
       add_action( 'wp_enqueue_scripts', 'yith_wcqv_enqueue_custom', 20 );
       function yith_wcqv_enqueue_custom(){
   
       	if( ! defined( 'YITH_WCQV_ASSETS_URL' ) ) {
       		return;
       	}
   
       	wp_dequeue_style( 'yith-quick-view' );
       	wp_enqueue_style( 'yith-quick-view-custom', YITH_WCQV_ASSETS_URL . '/css/yith-quick-view.css' );
       }
       ```
   
 * Try and let me know, regards.

Viewing 1 replies (of 1 total)

The topic ‘Remove inline styles?’ is closed to new replies.

 * ![](https://ps.w.org/yith-woocommerce-quick-view/assets/icon-128x128.gif?rev=
   3193930)
 * [YITH WooCommerce Quick View](https://wordpress.org/plugins/yith-woocommerce-quick-view/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/yith-woocommerce-quick-view/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/yith-woocommerce-quick-view/)
 * [Active Topics](https://wordpress.org/support/plugin/yith-woocommerce-quick-view/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/yith-woocommerce-quick-view/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/yith-woocommerce-quick-view/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [YITHEMES](https://wordpress.org/support/users/yithemes/)
 * Last activity: [9 years, 2 months ago](https://wordpress.org/support/topic/remove-inline-styles-2/#post-8917481)
 * Status: not resolved