one style in child theme not being recognized
-
Hi. I will apologize in advance if this is a dumb question, as I’m relatively new to CSS. I’ve tried searches for a solution but have not been able to find anything so thought I’d try a post here.
Anyway, what I’m trying to do is, I think, relatively simple. I am creating a child theme to override some of the styles in a parent theme. The child theme works perfectly, with one exception – the modification to blockquote. When I activate the child theme, go to a post, look in the source, and retrieve the child theme stylesheet from the link, everything is there, except the entry for blockquote. I have checked and rechecked and it is the right file. I have also made other edits to the stylesheet, then checked it by going through the above, and all other edits are being reflected.
This is the entry in the child theme – I’ve included the entries above and below as well:
#nav { font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; } blockquote { font-style: normal; font-size: 0.9em; color: #333; } .post .date { font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; }
“#nav” shows up, as does “.post .date” but “blockquote” just seems to disappear.
This is the entry in the parent theme, with the immediately adjacent entries also included:
pre code { font-size: 1.3em; } blockquote { clear: both; display: block; padding: 20px 20px 10px 45px; margin: 20px 0; font-style: italic; font-size: 1.2em; color: #141310; background: #e7e6e2 url(../images/blockquote.gif) no-repeat top left; } .entry ul, .c-body ul { margin: 0 0 10px 10px; }
I’m using W3 Total Cache which minifies the code – could that have something to do with it? Is it possible that it is, for some reason, stripping out blockquote? Actually no, not that – just disabled it and no change.
I’ve also check in different browsers and cleared browser caches.
I’m sure I’m missing something quite obvious but for the life of me can’t seem to spot it.
Any suggestions on what I’m doing wrong would be most appreciated.
- The topic ‘one style in child theme not being recognized’ is closed to new replies.