Forums Forums Search & Filter Pro Horizontal Search Bar

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

    Hi,

    I would like my search modules to appear horizontally on the Woocommerce page as in this demo you have for the basic software – http://www.designsandcode.com/wp-content/uploads/2013/09/screen21.png

    Is that possible and how do I go about it please?

    Thanks,

    Rory

    Trevor
    #106165

    You would need to use Custom CSS. A very basic example is:

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