Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
714 views
in Themes by

I want to change the background and hover color.

I'm looking for half an hour already. it's not as easy as it seems.

I would be happy if you can help me. Thanks.

 

Q2A version: 1.7

1 Answer

+4 votes
by
selected by
 
Best answer

This question looks like a deja vu (http://www.question2answer.org/qa/43212) :)

Anyway, you can't change that color directly from the CSS because it is part of the image itself. What you could do is modify the image applying whatever background you want or maybe, even better, modify the image and make the background transparent and then modify the qa-search-button CSS class like this:

.qa-search-button {
    background-color: red;
}

Then you could just change the background from the CSS itself.

...