Trying to make a child theme based on Patagonia theme.
All I want to do is to override the RSS feed image and make it smaller.
I have created a new folder, themes/BHSFP-theme, and created the following themes/BHSFP-them/style.css file. In the dashboard I have activated the BHSFP-theme without error. In addition, I have created hemes/BHSFP-them/images/rss_icon_40x40.png, which is referenced from the style.css below.
/*
Theme Name: Bellevue High School Fastpitch
Template: patagonia
Theme URI: http: //bhsfastpitch.com/
Author: Steve McCarthy
Author URI: http: //bhsfastpitch.com/
Version: 0.1.0
*/
/* inherit parent, no statement but comments before @import */
@import url("../patagonia/style.css");
#feedrss {
background: url(images/rss_icon_40x40.png) no-repeat;
}
So it is not working. Using wget, I downloaded the main page, and I expect to see the HTML code referencing the style sheet from the BHSFP-theme theme, but instead the style sheet URL is for the pategonia theme:
<link rel="stylesheet" href="http://bhsfastpitch.com/bhs/wp-content/themes/<b>patagonia</b>/style.css" type="text/css" media="screen" />
Any pointers appreciated.