• Resolved Diego Alarcón

    (@diefigueroa)


    Hello there! I wanted to ask how can modify the location of the category filters from bottom to top page in the mobile view of my store, since its useless if they’re unnotice for customers… Thanks in advance!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Kaira

    (@kaira)

    Hi @diefigueroa

    That would be a theme issue.

    But you can add this custom CSS to Customize -> Additional CSS and see if that does it for you.

    @media only screen and (max-width: 767px) {
        body.woocommerce .site-content {
            margin-bottom: 2em;
            display: flex;
            flex-direction: column;
        }
        body.woocommerce div#primary {
            order: 2;
        }
        body.woocommerce div#secondary-left {
            order: 1;
        }
    }

    Thanks

    • This reply was modified 3 years ago by Kaira.
    • This reply was modified 3 years ago by Kaira.
    Thread Starter Diego Alarcón

    (@diefigueroa)

    Hello @kaira! it did it! thanks a lot for your help!

    Plugin Author Kaira

    (@kaira)

    @diefigueroa Pleasure 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Move Category filters from bottom section to top in Mobile View’ is closed to new replies.