I created a child theme that works as intended. However, I was just trying to make a change and found that the style I added to my child theme was getting overwritten by the same style in a stylesheet imported by my parent theme.
For those who are visual:
Parent theme -
/*
Theme Name: xxx
Description: xxx
Author: xxx
Version: xxx
Author URI: xxx
*/
@import url( 'css/screen.css' );
@import url('css/skin.php');
Child theme -
/*
Theme Name: xxx
Description: xxx
Author: xxx
Version: xxx
Author URI: xxx
Template: xxx
*/
@import url("../xxx/style.css");
My styles here...
So, my question is, if I'm importing the parent stylesheet from my child theme, shouldn't the files my parent theme imports load before my child theme declarations go into affect?
Any help sorting out this issue would be grand.
Thanks!