Hi Ross,
You can add this CSS to make the search button show up:
.widget .search-field {
width: 45%;
}
.widget_search .search-submit {
display: inline-block;
}
You can adjust the width of the search field to your liking.
You may want to change the text inside the button, if so, you can use a filter.
1. Install the “Pluginception” plugin, which allows you to easily create plugins.
2. Add this PHP code to your newly created plugin:
add_filter('generate_search_button','generate_custom_search_button');
function generate_custom_search_button() {
return 'Go';
}
That should do it ๐