Making the search form responsive

The property search form by default has a 'table' layout specified in the CSS, to keep the controls spaced nicely.

There is no responsive element to the search form as we have no way of telling how wide your site is, how many controls you have in your search form, nor where you want the breakpoint to be.

As a quick example of making the form responsive for tablets and mobiles, you can add something like so to your theme's CSS:

/* Stack search form on anything less than 1023px wide */
@media (max-width:1023px) {
   .property-search-form { display:block }
   .property-search-form .control { display:block }
}