Title: Custom slick-theme.css
Last modified: August 7, 2017

---

# Custom slick-theme.css

 *  Resolved [cleforweb](https://wordpress.org/support/users/cleforweb/)
 * (@cleforweb)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/custom-slick-theme-css/)
 * Is there any way to use custom slick-theme.css wihout editing the original file?
   
   Thank you.

Viewing 6 replies - 1 through 6 (of 6 total)

 *  Plugin Author [Philipp Bammes](https://wordpress.org/support/users/tyrannous/)
 * (@tyrannous)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/custom-slick-theme-css/#post-9391420)
 * Hi [@cleforweb](https://wordpress.org/support/users/cleforweb/),
    there are several
   ways to achieve this. The “smartest” one is probably to copy `slick-theme.css`
   to your [Child Theme’s](https://codex.wordpress.org/Child_Themes) `css` folder
   and add the following to your `function.css`:
 *     ```
       add_action( 'wp_enqueue_scripts', function() {
       	wp_add_inline_style( 'slick-slider-core-theme', file_get_contents( get_stylesheet_directory() . "/css/slick-theme.css" ) );
       }, 11 );
       ```
   
 * Note that by using [`wp_add_inline_style()`](https://developer.wordpress.org/reference/functions/wp_add_inline_style/)
   your CSS will be printed inline in your document.
 * You might also use:
 *     ```
       add_action( 'wp_enqueue_scripts', function() {
       	wp_deregister_style( 'slick-slider-core-theme' );
       	wp_register_style( 'slick-slider-core-theme', get_stylesheet_directory_uri() . "/css/slick-theme.css", array( 'slick-slider-core' ), '1.6.0' );
       }, 11 );
       ```
   
 * But doing so, you’ll need to manually add the “Helper CSS” to your document (
   see the [FAQ](https://wordpress.org/plugins/slick-slider/#faq) question “Is it
   possible to prevent the plugin from adding additional helper CSS on my page?”).
 * Alternatively, you may use the “Additional CSS” section of the Customizer.
 *  Plugin Author [Philipp Bammes](https://wordpress.org/support/users/tyrannous/)
 * (@tyrannous)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/custom-slick-theme-css/#post-9413598)
 * [@cleforweb](https://wordpress.org/support/users/cleforweb/), any progress on
   this?
 * I’d love to see this thread resolved!
 *  Thread Starter [cleforweb](https://wordpress.org/support/users/cleforweb/)
 * (@cleforweb)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/custom-slick-theme-css/#post-9413640)
 * I used code with wp_deregister_style… and this works. I did not add helper css
   because I am not sure how to do it. Anyway Slick working without it so thank 
   you!
 *  Plugin Author [Philipp Bammes](https://wordpress.org/support/users/tyrannous/)
 * (@tyrannous)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/custom-slick-theme-css/#post-9413721)
 * Hi [@cleforweb](https://wordpress.org/support/users/cleforweb/),
    I’m glad it’s
   working for you.
 * Setting this thread’s status to `resolved`.
 *  Thread Starter [cleforweb](https://wordpress.org/support/users/cleforweb/)
 * (@cleforweb)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/custom-slick-theme-css/#post-9413756)
 * OK. Thank you. This is a great plugin.
 *  Plugin Author [Philipp Bammes](https://wordpress.org/support/users/tyrannous/)
 * (@tyrannous)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/custom-slick-theme-css/#post-9413778)
 * If you like it, feel free to [write a review](https://wordpress.org/support/plugin/slick-slider/reviews/#new-post)!
   🙂
 * Sorry, I just noticed you already did. Stupid me …

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Custom slick-theme.css’ is closed to new replies.

 * ![](https://ps.w.org/slick-slider/assets/icon.svg?rev=1520493)
 * [Slick Slider](https://wordpress.org/plugins/slick-slider/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/slick-slider/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/slick-slider/)
 * [Active Topics](https://wordpress.org/support/plugin/slick-slider/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/slick-slider/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/slick-slider/reviews/)

 * 6 replies
 * 2 participants
 * Last reply from: [Philipp Bammes](https://wordpress.org/support/users/tyrannous/)
 * Last activity: [8 years, 10 months ago](https://wordpress.org/support/topic/custom-slick-theme-css/#post-9413778)
 * Status: resolved