Forums Forums Search & Filter Pro Form Layout to be Horizontal not Vertical Pls

Viewing 1 post (of 1 total)
  • Trevor
    #179694

    To set the form fields horizontally, you need to use custom CSS, like this:

    .searchandfilter > ul > li {
      display: inline-block;
      margin-right: 20px;
      float: left;
    }
    .searchandfilter > ul > li:last-child {
      margin-right: 0;
    }
    .search-filter-results {clear: both;}
Viewing 1 post (of 1 total)