Child Theme CSS changes not updating
-
Hello,
I have the child theme installed and it appears to be pulling correctly from the Parent Theme. I am able to have unique php files updated to the child theme and are viewable in the WordPress Editor, however, none of the css changes I am trying to commit are occurring/updating.
So for example nothing in the CSS file after
@import url("../twentyeleven/style.css");
NOTHING is updating.
Below is what the code current looks like in the css file. However when I inspect the elements on the webpage the css changes I committed are not updated.
/* Theme Name: Twenty Eleven Child Description: Child theme for the Twenty Eleven theme Author: Mat Berg Template: twentyeleven */ @import url("../twentyeleven/style.css"); /* This will override site title color even on the dark theme */ #site-title a { color: #009900 !important; #access { background: -webkit-linear-gradient(#999, #33CC33); -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px; -moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px; box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px; clear: both; display: block; float: left; margin: 0 auto 6px; width: 100%; }
- The topic ‘Child Theme CSS changes not updating’ is closed to new replies.