Reputation: 1
My website is: https://zaariya.com/
I want two products in a mobile view and I've tried each and every thing to show two products only in media@(max-width:481)
.
When I turn it into 481
it shows a single one.
I want to show two products on mobile, please help me.
I have tried changing the css of g product-inner
but nothing happens.
I have searched the internet and placed additional css also, but that does not work for me.
This theme I purchased from theme forest.
Upvotes: 0
Views: 717
Reputation: 637
Check this:
@media screen and (max-width: 640px) {
.columns-4 .card-item {
width: 50% !important;
}
}
I will get something like this:
Upvotes: 1