Forums Forums Search & Filter Pro form fields positions

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

    Hi, how do i make the form fields show side by side, instead of above each other.

    Trevor
    #152217

    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;}
    Anonymous
    #152278
    This reply has been marked as private.
    Trevor
    #152280

    I have looked at your site and I do not see that CSS I gave you. Is your site caching the CSS?

    Anonymous
    #152957
    This reply has been marked as private.
    Trevor
    #152993

    Does Divi not have a custom CSS panel? If not, then in the stylesheet for the Child theme, yes. Not in the Search & Filter CSS file. Make sure any caches you have running are cleared also

    Anonymous
    #152997
    This reply has been marked as private.
    Trevor
    #153001
    This reply has been marked as private.
    Trevor
    #153004

    Great to speak with you Bradley. Turns out that was the GoDaddy cache that needed flushing. I will close this thread for now.

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