Hi Wolf’s Brain,
Thanks for the quick reply. Unfortunately I have code similar to that in my stylesheet already (using contact form 7):
.wpcf7-f890-p788-o1, input[type=submit] {
background: #3498db;
border-radius: 10px;
font-family: Lato, sans serif;
font-weight: 700;
color: #fff;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-transform: uppercase;
} '
But it doesn’t override the default gradient that’s being applied somewhere. It’s in some random inline stylesheet that I can’t figure out where is. This is it:
a:link, a:visited,
.primary-color,
.menu-main .current_page_ancestor > a,
.menu-main .current-menu-item > a { color:#387f6f; }
.primary-color-bg,
.menu-portfolio .current-cat a { background-color:#387f6f; }
.button-default, .button-default:link, .button-default:visited, input[type=submit] { background:#387f6f;
background:-moz-linear-gradient(top, #387f6f 0%, #064d3d 100%);
background:-webkit-linear-gradient(top, #387f6f 0%,#064d3d 100%);
background:linear-gradient(to bottom, #387f6f 0%,#064d3d 100%);
filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#387f6f', endColorstr='#064d3d',GradientType=0 );
text-shadow:0 -1px 0 rgba(0, 0, 0, 0.5); border-color:#064d3d; }
.button-default:hover, input[type=submit]:hover { background:#387f6f; }
Thanks for your help!