Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
1.2k views
in Q2A Core by
edited by
by
are you trying to skin the search button on the right hand side? you can do this through css.  please let me know and i can give you a sample...

1 Answer

+2 votes
by
In the qa-styles.css file find .qa-search, and below it add:

.qa-search-button {background:white; border: 1px solid black;}

This is just a simple example of adjusting the background color and border. You can also adjust the css on hover by adding:

.qa-search-button:hover {background:grey; border: 1px solid black;}

And of course this is fully customizable, just adjust colors and other css features as desired.
...