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

Viewing 2 posts - 1 through 2 (of 2 total)
  • Anonymous
    #179683

    The search form I have created here needs to be displayed horizontally under the slider. Can you help me?
    http://dev.freshbaby.com/articles

    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 2 posts - 1 through 2 (of 2 total)