Blog category sorting looks bad on mobile

Hi, 
Please take a look at how this looks on mobiles, is there a solution for that?
Thanks
Sune

Comments

  • One more thing, can I change the order of the categories in the blog sorting?
    Thanks
  • Hi,

    the main problem is with one of your extra files that comes with one of your plugins probably what you can see on http://pasteboard.co/pX25c8aGQ.png

    Also, you did changes in style.css file and you set fixed width for filters of 25%.

    However, you can still display filters properly on mobile, but you need to use the following css:
    @media only screen and (max-width: 767px){
        #Filters .filters_wrapper ul li {
            clear: both !important;
            display: block !important;
        }
        #Filters .filters_wrapper ul li {
            width: 99% !important;
        }
    }
Sign In or Register to comment.