All things Shopify and commerce
I need to split one review column into two columns in mobile Device, Currently I am using a plugin which shows one column in mobile devices and I want to show 2 in one column. I want to do it by using css.
Here is the link where you can find the reviews.
https://quebekado.ca/products/civiere-dorsale-orthopedique-quebekado%E2%84%A2
I need like this
Solved! Go to the solution
This is an accepted solution.
@bilalmemon1993 , Hope you are doing well.
Could you please check the app you are using for the review does it have an option to add custom CSS?
If yes then add the below line of CSS code to that custom code css part. It'll display 2 columns in mobile layout as attached screenshot.
@media(max-width:450px){
#reviewImporter.grid .item{
width: calc(49% - 13px);
}
}
Hope this will help you!
This is an accepted solution.
@bilalmemon1993 , Hope you are doing well.
Could you please check the app you are using for the review does it have an option to add custom CSS?
If yes then add the below line of CSS code to that custom code css part. It'll display 2 columns in mobile layout as attached screenshot.
@media(max-width:450px){
#reviewImporter.grid .item{
width: calc(49% - 13px);
}
}
Hope this will help you!
Thanks to everyone who participated in our AMA with 2H Media: Marketing Your Shopify St...
By Jacqui Sep 6, 2024The Hydrogen Visual Editor is now available to merchants in Shopify Editions | Summer '...
By JasonH Sep 2, 2024Note: Customizing your CSS requires some familiarity with CSS and HTML. Before you cust...
By JasonH Aug 12, 2024