Forums Forums Search & Filter Pro CSS Layout?

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

    I’m lost trying to figure out how/where to adjust the layout —

    right now the search form is vertically aligned… ul after ul… ugly

    how can we create horizontal layout — break the ul’s into columns?

    thanks

    Trevor
    #166788

    You would need to use Custom CSS. There are many code snippets in the forum (found by searching for horizontal CSS, but this is what I normally start with:

    .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)