Hi zufurrak, the plugin is intended to be styled using CSS, so you should get yourself familiar with CSS in order to do things like this.
To increase the space between the last form field and the submit button you can try increasing the margin on the submit button – if the submit button is underneath the dropdowns you would add margin in your css like this:
.searchandfilter input[type=submit]
{
margin-top:20px;
}
If you wanted to change the spacing between all elements, as they are in an unordered list you can do something like:
.searchandfilter > ul > li
{
padding: 20px 0;
}
As I said try to get yourself familiar with CSS and you can go ahead and make this plugin look however you want – I’ve added very little styling to search form 🙂
Thanks