Child themes and multiple directories
-
I have theme with a directory as follows:
-/theme --/css ---responsive.css --/images -style.css
I’m using a child theme and want to change the styles of the responsive.css file. My child theme looks like this:
-/theme-child --/css ---responsive.css --/images -style.css
Inside of me style.css, the import statement
@import url("../theme/style.css");
is used to import my style.css into my child theme so I can edit the styles.I have the import statement
@import url(“../../theme/responsive.css”);` in my responsive.css file (in my child theme).
The edits I make to my responsive.css in my child theme directory do no overwrite the original responsive.css in the original theme directory.
Curious as to what I am doing wrong and why I can’t get this to work?
Thanks!
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Child themes and multiple directories’ is closed to new replies.