Forums Forums Search & Filter Pro color of button

Viewing 2 posts - 1 through 2 (of 2 total)
  • Anonymous
    #230196

    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

    https://ibb.co/XWqvPLj

    Usually, I do myself without asking. It is not a big deal but this time does not work
    thanks in advance

    Ross Moderator
    #230228

    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

Viewing 2 posts - 1 through 2 (of 2 total)