Forums Forums Search & Filter Pro Button together

Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Anonymous
    #209620

    Hi
    I would like to be able to hold the “Reset and Cerca” button together but I would like them to remain under the taxonomy entries.
    How can I do?
    Now the site is http://www.oenoa.it
    Thank you.

    Trevor
    #209633

    You have this custom CSS:

    .searchandfilter ul li {
        list-style: none;
        display: inline-table;
        padding: 1px;
        margin: 4px;
    }

    Change this to this:

    .searchandfilter ul li {
        list-style: none;
        display: inline-block;
        padding: 1px;
        margin: 4px;
        float: left;
    }
    .searchandfilter .sf-field-reset {
        clear: both;
    }
    .searchandfilter > ul {
        display: table;
        margin: 0 auto;
    }
    Anonymous
    #210863

    Hi Trevor, I apologize but I could not explain my problem to you …

    In the Home there is search & filter that is aligned in the center, this is fine, but, if the screen changes its size I can’t keep the RESET and CERCA buttons together, in a row under the other taxonomies.

    If you tighten the screen to 900px width, the taxonomy buttons go down and join the RESET and CERCA buttons.

    I need to hold both the RESET and CERCA buttons together, one next to the other, but always under the taxonomies.

    For other taxonomies it doesn’t matter.

    Trevor
    #211002

    This is what I see at 900px:

    https://www.screencast.com/t/ckLkI8zWOmHs

    You want them to slide under the other fields? The problem is that there is no container around these two buttons, so to treat them as one is almost impossible. This might be a lot easier when V3 of our plugin arrives.

Viewing 4 posts - 1 through 4 (of 4 total)