Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
458 views
in Q2A Core by
I want to give color and increase the border of the search box.

1 Answer

+2 votes
by
selected by
 
Best answer

Add this at the end of the qa-theme/SnowFlat/qa-styles.css file:

.qa-search-field {
    border: 4px solid red;
}
.qa-search-button {
    width: 33px;
    height: 28px;
  margin: 0 0 4px -1px !important;
}

Modify the code appropriately.

by
Thank you puppy
...