Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
my site is
https://uncommoncoffeeroasters.com
but the child theme is not live.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
what is the name of your child theme folder?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
There are so many styles in your child theme style.css file, which style specifically doesn’t work?
I made these changes that I thought would be drastic and noticeable but I have not been able to see them in the live preview
body {
background: #ff0000;
#page {
margin: -10em auto;
max-width: 1600px;
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
I can’t debug CSS in 2 thousand lines of code 🙂 And I assume that you don’t know what those 2 thousand lines of code are doing.
So let’s start from scratch. Can you only put this style inside of your Child Theme style.css file:
body {
background: #ff0000;
}
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Actually let’s use more specific selectors than that, try:
html body {
background: #f00;
}
I did that, deleted everything and only left
/*
Theme Name: Twenty Eleven Child
Theme URI: http://example.com/twenty-fifteen-child/
Description: Twenty eleven Child Theme
Author: John Doe
Author URI: http://example.com
Template: twentyeleven
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Text Domain: twenty-eleven-child
*/
body {
background: #ff0000;
}
nothing changes
same results with html body
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support