Classipress Custom child theme is not working
I have followed the instruction on the documentation for adding a simple custom child theme having only one style.css file. This is not the first time I am using Wordpress and create child themes so I am pretty good at basic stuff.
- created a folder called classipress-child under theme directory at the same level as classipress folder
- created a file called style.css in it
- added below, exactly as in the instruction:
/*
Theme Name: My ClassiPress Child Theme
Version: 1.0
Description: A child theme for ClassiPress, classified ads theme.
Author:
Author URL:
Template: classipress
*/
@import url("../classipress/style.css");
body, html {
background-color:white !important;
}
.content_botbg{
background:url("") repeat-x bottom;
background-color:white;
}
However my child theme style sheet doesn't load up.
What the problem might be?
Thanks in advance