I’d like to change the background colour of the horizontal menu bar. I followed the steps described above but I can’t get it to work. I’m using Firebug on Firefox and I can alter the colour if I change the gradient values around line 490 of style.css:
#branding #access,
#colophon #access-footer {
background: #222; /* Show a solid color for older browsers */
background: -moz-linear-gradient(#585858, #3d3d3d);
background: -o-linear-gradient(#585858, #3d3d3d);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#585858), to(#3d3d3d)); /* older webkit syntax */
background: -webkit-linear-gradient(#585858, #3d3d3d);
clear: both;
display: block;
float: left;
margin: 0 auto 2px;
width: 100%;
}
…but it doesn’t change if I manually edit the style.css file. What am I missing?
Sorry if I’m being thick – I’m quite new to this child theme malarkey ??
Cheers!