Hi,
I am new to wordpress and I am having the same issue that others have when trying to implement a child theme, I've read through many posts here and elsewhere and still can't figure out what's wrong.
I am following the tutorial by presscoders found here:
http://www.presscoders.com/wordpress-theme-customization-guide/#chapterseven
This is what I have:
my style.css in the child theme folder looks have the following code:
/*
Theme Name: Designfolio Child Theme
Theme URI: http://www.presscoders.com/designfolio
Description: A child theme of Designfolio.
Author:
Author URI: http://www.presscoders.com
Template: designfolio
*/
@import url("../designfolio/style.css");
/* Add your custom css below this line */
#header-container, .footer-widget-container {
background: #E01B6A;
}
The folder structure is:
wp-content/themes/designfolio
wp-content/themes/designfolio-child
the designfolio-child folder has the following files:
style.css
functions.php (empty)
this is the url of my site:
http://holamultimedia.net/wp/?page_id=14
I am using Dreamweaver CS6 to edit the style.css and uploading to the server via ftp. Have tried to edit the child's style.css via the appearance editor in the dashboard but that doesn't work either.
Any ideas? Any help is greatly appreciated.