Hi all - I am trying to edit the colors in the menu bar of the Twenty Eleven theme, but the WordPress CSS Stylesheet editor won't let me do it. I am hoping that someone can tell me what I'm doing wrong.
I am trying to change this (default code):
#access {<br />
background: #222; /* Show a solid color for older browsers */<br />
background: -moz-linear-gradient(#252525, #0a0a0a);<br />
background: -o-linear-gradient(#252525, #0a0a0a);<br />
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#252525), to(#0a0a0a)); /* older webkit syntax */<br />
background: -webkit-linear-gradient(#252525, #0a0a0a);<br />
...<br />
}
...to this:
#access {<br />
background: #069; /* Show a solid color for older browsers */<br />
background: -moz-linear-gradient(#006699, #003366);<br />
background: -o-linear-gradient(#006699, #003366);<br />
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#006699), to(#003366)); /* older webkit syntax */<br />
background: -webkit-linear-gradient(#006699, #003366);<br />
...<br />
}
...but when I preview the site, the menu area is blank (white text on white background). When I return to my custom CSS, the editor has removed all of the color references and left me with this:
#access {<br />
background:0;<br />
...<br />
}
Does anyone know how I can get these changes to "stick"? The CSS I'm trying to upload works OK outside of WordPress, so I think my code is OK. Thanks in advance for any help.
The blog I need help with is privacylawwatch.com.