Help with child theme setup
-
I am trying to organise a child theme and I cannot work out what I am doing wrong. I am getting the following error message in the Themes page on wordpress:
The parent theme is missing. Please install the “twentytwelve\” parent theme.
I am entering the following code for my style.css:
/* Theme Name: Twenty Twelve Child Description: Child theme for the Twenty Twelve theme Author: Jamie Bisson Template: twentytwelve Version: 0.1.0 */ @import url("../twentytwelve/style.css"); .entry-content h3, .comment-content h3 { font-size: 18px; font-size: 1.285714286rem; line-height: 1.6; } .entry-content h4, .comment-content h4 { font-size: 18px; font-size: 1.285714286rem; line-height: 1.6;; } .entry-content h5, .comment-content h5 { font-size: 18px; font-size: 1.285714286rem; line-height: 1.6; } .entry-content h6, .comment-content h6 { font-size: 18px; font-size: 1.285714286rem; line-height: 1.6; } <?php // Has the text been hidden? if ( ! display_header_text() ) : ?> .site-title, .site-description { position: absolute !important; clip: rect(1px 1px 1px 1px); /* IE7 */ clip: rect(1px, 1px, 1px, 1px); } <?php // If the user has set a custom color for the text, use that. else : ?> .site-title a, .site-description { color: #<?php echo $text_color; ?> !important; } <?php endif; ?>
Any suggestions?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Help with child theme setup’ is closed to new replies.