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
@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!