How can I display two products per row on mobile view?

Hello,

I tried to find any solution but nothing worked.

I wanna show 2 products in 1 row on a mobile view.

https://talmaslavi.com/

Thank you for your help!

Hi @LielBom , add the below code to your theme’s CSS file.

@media screen and (max-width: 749px) {
   .grid--1-col-tablet-down .grid__item {
       width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2) !important;
   } 
}

.grid–1-col-tablet-down .grid__item

go to base.css file and find this class on line no 981 and coment the code max-width:100%
you are overding the properties of the default theme settng.

I tried, but unfortunately, that didn’t change anything.