• Resolved ikariuss

    (@ikariuss)


    Hello,
    I wish you can help :
    On the mobile version of the post grid feature, I would like to put all the category filters in a single row, with the ability of scrolling horizontally between filter items, i tried to do that with the custom CSS but no result :

    @media (max-width: 767px) {
    .lae-taxonomy-filter>ul {
        flex-flow: row nowrap;
        overflow-x:scroll;
    }
    .lae-taxonomy-filter>ul li{
        min-width:100px;
        
    }}
    
    • This topic was modified 2 years, 6 months ago by ikariuss.
Viewing 1 replies (of 1 total)
  • Plugin Author livemesh

    (@livemesh)

    I tried this one on my dev server and it seems to work –

    @media (max-width: 767px) {
        .lae-taxonomy-filter  {
            display: flex !important; 
            flex-flow: row nowrap !important;
            overflow-x: scroll;}
     
    }

    You may need to tweak it slightly for the free version of the widget.

Viewing 1 replies (of 1 total)
  • The topic ‘horizontal scroll for filter items for Post Grid on Mobile’ is closed to new replies.