This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Disposition checkboxes in In Frontend search settings / category / change displa

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Disposition checkboxes in In Frontend search settings / category / change displa

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #24357
    Thierry48Thierry48
    Participant

    Hi Ernest,

    In Frontend search settings / category / change display mode, I chose display as checkboxes. As you can see in the screenshot, I get 2 columns. One for the categories and one for the tags.
    The concern:
    1 – my list of categories is long, and I want to display everything without overflow.
    2 – I want to expand the categories column (left column).
    3 – Is it possible to distribute checkboxes horizontally?

    Thank you

    #24366
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    1,2 – The overflow can be disabled by changing the filter boxes max height to none, here: https://i.imgur.com/Uu4XXvP.png
    3. Well, there might be a workaround via custom CSS, but it may not work in all cases:

    .asp_filter_tax {
        width: 100% !important;
        min-width: 100% !important;
    }
    
    .asp_filter_tax .mCSBap_container {
        display: flex !important;
        flex-wrap: wrap;
    }
    
    .asp_filter_tax .asp_option {
        margin-left: 0 !important;
    }

    It will result in something like this: https://i.imgur.com/b8S3aVi.png

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Disposition checkboxes in In Frontend search settings / category / change displa’ is closed to new replies.