• knowing8

    (@knowing8)


    Hello, is it possible to make in mobile theme shop page not one product per row, but 2 rows?

Viewing 3 replies - 1 through 3 (of 3 total)
  • James Koster

    (@jameskoster)

    Sure, try something like

    @media screen and (max-width: 768px) {
    ul.products li.product {
    width: 48%;
    float: left;
    clear: both;
    }
    
    ul.products li.product:nth-child(2n) {
    float: right;
    clear: none;
    }
    }
    Thread Starter knowing8

    (@knowing8)

    Add these lines in Storefront syles.css?

    James Koster

    (@jameskoster)

    I’d recommend using a custom css plugin, or something like this if you’re doing more customisations.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Strorefront mobile theme’ is closed to new replies.