By the way, in addition to the css line you mentioned, I also had to change the
background hexidecimal color for the following button and form element class selectors in the various mobile template stylesheets at or around line 49:
- Code: Select all
/* buttons and other form elements */
button,
.button,
input[type=button],
input[type=submit] { border: none; /* ORIG -- background:#cb260a; */ background: #7AA638; height: 26px; line-height: 26px; font-size: 12px; font-weight: bold; padding: 0 10px; -webkit-border-radius: 5px; }
These cover the color of the Close and Back buttons which appear when the Menu is opened. (Note that I used a different, lighter, green than the one you specified -- #7AA638).