Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
358 views
in Themes by
how to change color off ask button, form blue to orange, and how to change text field of ask

http://prntscr.com/jxbrdt

1 Answer

0 votes
by

I think that you're using Donut theme and AFAIK there's no option to edit it from the backend. But you can find that text in

qa-theme/Donut-theme/templates/site-header.php
input type text with class form-control input-lg ask-field. Line 50-60

To change ask button color you can customize it in donut.css file. You can find that text in:

qa-theme/Donut-theme/css/donut.css
search for .site-header .search-bar .ask-btn (line 1800-1810 approximately)
add: background-color: red !important;
below border-radius: 0;
Check with and without !important

I hope it helps you

...