Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #492709

    hi,

    I notice that some Blog News can fit Two items in a row on mobiles, is it possible for Woocommerce Items to display the same way?
    like this: http://screencast.com/t/92LIpr9YnW

    I suppose there is some width limit applied?

    thank you :)

    #492912

    Hi decode!

    Can you please post the link to your page so we can look into it?

    Best regards,
    Yigit

    #493668

    hi, Yigit

    shop items are shown “Two” in a row on desktop browser, but on mobile phone, only one item can be shown.
    http://screencast.com/t/FQyRLRK3O71

    thanks :)

    #494132

    Hi!

    try this code:

    .responsive #top #main .products .product {
    width: 50% !important;
    }
    

    Best regards,
    Andy

    #499019

    hi,

    thanks,
    but it became 50% on all screen sizes, I need it to fit ONE shop item on SMALLER SCREEN ONLY, any idea?

    #499179

    Hi!

    then you need to work with media queries. Use something like this:

    @media only screen and (max-device-width: 736px) {
    .responsive #top #main .products .product {
    width: 50% !important;
    }}
    

    Hope this helps.

    Cheers!
    Andy

    #513640

    hi,

    sorry for late reply,
    we tried the code above but It’s not working, any other advise ?

    thank you :)

    #513656

    Hey!

    try this code instead:

    @media only screen and (max-width: 736px) {
    .responsive #top #main .products .product {
    width: 50% !important;
    }}
    

    and adjust as needed.

    Cheers!
    Andy

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