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

Need a few layout tips

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #33389

    1) Starting with the Minimal Gray Vertical theme, my goal is to have a blog page with category filters, no search box,

    2) How do I position my filters (Category Checkboxes) ABOVE my results?

    3) Can I remove scrolling from the results area, and make each result a fixed height and width?

    #33397
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    You can use the search results shortcode to palce the results container anywhere away from the search box.

    The results scrollbar can be disabled here.

    #33407

    So far so good! I found it better to use the Settings shortcode to display my settings above my results.

    Q: Is it possible to get Category checkboxes to flow horizontally, instead of being in a column?

    #33427
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You are welcome! Well, try this custom CSS code:

    .asp_filter_tax {
        width: 100% !important;
        min-width: 100% !important;
    }
    
    .asp_filter_tax .asp_simplebar-content {
        display: flex !important;
        flex-wrap: wrap;
    }
    
    .asp_filter_tax .asp_option {
        margin-left: 0 !important;
    }
    
    .asp_filter_tax .asp_option .asp_option_label {
        white-space: nowrap;
    }
    #33446

    That worked very well, thank you!

    #33456
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Need a few layout tips’ is closed to new replies.