Home Forums Air WordPress Theme filters presentation

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #23848
    Plasticforks
    Participant
    Purchased
    Expired

    Hello,
    I use the years as filters .. the problem is that there are a lot of them: the filters are displayed on 2 or 3 lines (or more on mobile) ..
    Is there a solution (plugin, code, theme functionality) that would allow me to display the filters on 1 single line and to scroll these filters from left to right? or present a drop-down menu to select a filter?
    this is a big problem for me ..
    Thank you very much for your reply 🙂

    #23851
    SeaTheme
    Keymaster
    Purchased
    Expired

    Hi,

    It should be possible by the custom CSS.

    Please paste the custom CSS code to “Appearance > Customize: Additional CSS”:

      .filters {
        cursor: pointer;
        width: 200px; 
        height: 40px; 
    }
    
      .filters-ul{
       background-color: #fff;
    }
    
     .filters li:not(:first-child) {
        display: none;
    }
    
     .filters:hover li:not(:first-child) {
        display: block;
    }

    Regards!

    SeaTheme – SeaTheme.netTwitterFacebook

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.