ahmmad zayeem
ahmmad zayeem

Reputation: 1

I want to have two products on a mobile view woocommerce

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

Answers (1)

Erfan Loghmani
Erfan Loghmani

Reputation: 637

Check this:

@media screen and (max-width: 640px) {
    .columns-4 .card-item {
      width: 50% !important;
    }
}

I will get something like this:

your products view on mobile[1]

Upvotes: 1

Related Questions