By jamez_uk on
Sorry for the basic question I can't find the CSS file that adds the rounded corners to the search button in Bartik Theme.
Many Thanks
Sorry for the basic question I can't find the CSS file that adds the rounded corners to the search button in Bartik Theme.
Many Thanks
Comments
input.form-submit
It is the style for buttons in general (input.form-submit in the Buttons section of style.css) that is making it rounded.
Adding this removes the rounding on just the search button:
#block-search-form input.form-submit {
-khtml-border-radius: 0px;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
border-radius: 0px;
}