BergHomes
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Child Theme CSS changes not updatingHmm just added that. And no red body text seems to show up on the site. Reference update code below… It’s strange because the Child Theme is live. I’m wondering if I should just reinstall the CSS file in the control panel directory. Maybe something got corrupted.
/*
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 PARENT theme */
body {
border: 10px solid red !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%;
}Forum: Fixing WordPress
In reply to: Child Theme CSS changes not updatingOK thanks for the quick response. I just decided to get rid of the title change all together. So now I’m trying to figure out what the nav bar isn’t updating. The CSS code looks like this now:
/* 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 PARENT theme */ #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%; }