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 :)
Hi decode!
Can you please post the link to your page so we can look into it?
Best regards,
Yigit
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 :)
Hi!
try this code:
.responsive #top #main .products .product {
width: 50% !important;
}
Best regards,
Andy
hi,
thanks,
but it became 50% on all screen sizes, I need it to fit ONE shop item on SMALLER SCREEN ONLY, any idea?
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
hi,
sorry for late reply,
we tried the code above but It’s not working, any other advise ?
thank you :)
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