Forums Forums Search & Filter Pro display search in horizontal way

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

    Hi,

    i have created a search bar, but couldnt find a way to make it horizontal.

    I would like to display the search bar below my menu bar, horizontally, can advice how i can do that?

    web:
    http://vallinamgallery.com/web/

    Trevor
    #158894

    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)