Child theme not overriding parent in 3.3
-
I have a simple child theme whose parent is “twentyten”. I called it “twentyten-child”. Right now, it only consists of a
style.css
and aheader.php
style.css is as follows:
/* Theme Name: TwentyTen child Description: Child theme for Twenty Ten Author: James Template: twentyten */ @import url("../twentyten/style.css"); body.custom-background { background-color: red; }
I’ve inserted the alternate background-color CSS in order to test if the child is overriding the parent’s background-color setting for body.custom-background (which is black). I can see that my child theme is being loaded – it’s in the
<style>
tag in the page<header>
, but my customisation doesn’t kick in.Changes to the
<title>
located in my child theme’sheader.php
don’t happen either.Is there some bug with 3.3 as I’ve seen others suggest? Or am I doing something wrong?
Many thanks
P.S. The site in question is tbmsussex.co.uk
- The topic ‘Child theme not overriding parent in 3.3’ is closed to new replies.