- This topic has 1 reply, 2 voices, and was last updated 6 years, 3 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Forums › Forums › Search & Filter Pro › color of button
Hello again,
sorry to bothering you
Can you please tell me how can I change the submit button color and border?
I tried to change it but it does not work
input[type="submit" i] I think I need to change this one
I need to make something like an image
Usually, I do myself without asking. It is not a big deal but this time does not work
thanks in advance
Hi Benjamin
You can do this like:
.searchandfilter input[type="submit"] {
background-color: #f00;
border-radius: 8px;
}
If that doesn’t work, then it might be that your CSS is loading before our CSS, so you can use the ID which should overrule the styles (just replace 1960 with the actual ID of your search form):
#search-filter-form-1960 input[type="submit"] {
background-color: #f00;
border-radius: 8px;
}
Thanks