Forums Forums Search & Filter Pro Easy Digital Downloads, Vendd Formatting, and search bar customization

Viewing 10 posts - 1 through 10 (of 19 total)
  • Anonymous
    #150316

    Greetings! I am working with the EDD Vendd theme and my results are coming back poorly formatted from the filters. Additionally I am having issues making the search bar formatted horizontally.

    1. How do I make sure results are pulled back correctly?
    2. How do I format my search bar.

    Thanks!

    Trevor
    #150338

    Making the search bar horizontal will require some custom CSS. The precise CSS required will depend on the style you need to match your theme. I can give you general pointers in how this is done, be referring to code snippets on this forum. You can search for horizontal CSS, but this is the typical base CSS required:

    .searchandfilter > ul > li {
      display: inline-block;
      margin-right: 20px;
      float: left;
    }
    .searchandfilter > ul > li:last-child {
      margin-right: 0;
    }
    .search-filter-results {clear: both;}

    As to the appearance of results, are you able to send me a live link/URL to your search page so I can take a look?

    Anonymous
    #150413
    This reply has been marked as private.
    Trevor
    #150447
    This reply has been marked as private.
    Anonymous
    #150457
    This reply has been marked as private.
    Trevor
    #150459
    This reply has been marked as private.
    Anonymous
    #150482
    This reply has been marked as private.
    Trevor
    #150498
    This reply has been marked as private.
    Anonymous
    #150840

    Trevor really appreciate your support here. I changed my results section class and that solved most of my issues. I am working with the CSS for the search bar now and after that I should be right as rain. Let me attempt with the code snippets first and I will get back to you!

    Anonymous
    #150845
    This reply has been marked as private.
Viewing 10 posts - 1 through 10 (of 19 total)