Title: Enqueuing multiple style sheets
Last modified: September 12, 2016

---

# Enqueuing multiple style sheets

 *  [paulhutton](https://wordpress.org/support/users/paulhutton/)
 * (@paulhutton)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/enqueuing-multiple-style-sheets/)
 * I’m working on a theme with several style sheets, but I am not able to effect
   any changes I make to the style sheets I have created in my child theme. The 
   file paths of the two I am updating is as follows:
 * /style.css
    /assets/css/theme-styles.css
 * My functions.php file looks like this:
 *     ```
       add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );
   
       function enqueue_parent_styles() {
          wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
          wp_enqueue_style( 'parent-theme-styles.css', get_template_directory_uri().'/assets/css/theme-styles.css' );
       }
       ```
   
 * The style.css contains only the following (as per the original)
 *     ```
       @import url(assets/css/normalize.css);
       @import url(assets/css/icomoon.css);
       @import url(assets/css/theme-styles.css);
       @import url(assets/css/woocomerce.css);
       ```
   
 * Incidentally, any amendments I make to the original theme-styles.css sheet are
   reflected straight away on my site (on localhost) so I don’t believe it is a 
   cache issue.
 * Does any body have any ideas what I may be doing incorrectly?
 * Thanks in advance!
    Paul

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

 *  [webkong](https://wordpress.org/support/users/webkong/)
 * (@webkong)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/enqueuing-multiple-style-sheets/#post-8176816)
 *     ```
       <?php
       function my_theme_enqueue_styles() {
   
           $parent_style = 'parent-style'; // This is 'twentyfifteen-style' for the Twenty Fifteen theme.
   
           wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
           wp_enqueue_style( 'child-style',
               get_stylesheet_directory_uri() . '/style.css',
               array( $parent_style ),
               wp_get_theme()->get('Version')
           );
       }
       add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
       ?>
       ```
   
 * [https://codex.wordpress.org/Child_Themes](https://codex.wordpress.org/Child_Themes)
 * _[moderator note – signature removed as per [forum rules](https://codex.wordpress.org/Forum_Welcome#Signatures)]_
    -  This reply was modified 9 years, 9 months ago by [stephencottontail](https://wordpress.org/support/users/stephencottontail/).
 *  Thread Starter [paulhutton](https://wordpress.org/support/users/paulhutton/)
 * (@paulhutton)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/enqueuing-multiple-style-sheets/#post-8177728)
 * Thanks webkong. Not entirely sure what you are suggesting I should do – I am 
   not working with twentyfifteen for starters. Are you able to clarify for me?
   
   Thanks a lot Paul
 *  [kmurrayfrgraphics](https://wordpress.org/support/users/kmurrayfrgraphics/)
 * (@kmurrayfrgraphics)
 * [9 years ago](https://wordpress.org/support/topic/enqueuing-multiple-style-sheets/#post-9156393)
 * Were you able to solve this issue? I am running into the same problem.

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

The topic ‘Enqueuing multiple style sheets’ is closed to new replies.

## Tags

 * [css](https://wordpress.org/support/topic-tag/css/)

 * 3 replies
 * 3 participants
 * Last reply from: [kmurrayfrgraphics](https://wordpress.org/support/users/kmurrayfrgraphics/)
 * Last activity: [9 years ago](https://wordpress.org/support/topic/enqueuing-multiple-style-sheets/#post-9156393)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
