[ad_1]
how to get two columns in mobile for grid layout?
Tried the below code it worked in inspection mode but when applied it doesn’t work
@media screen only (max-width: 797px) {
.grw-reviews{
display:grid !important;
}
.wp-gr .grw-reviews {
display: grid !important;
grid-template-columns: repeat(2, 1fr) !important;
gap: 1px;
overflow: hidden;
scrollbar-width: none;
flex: none;
}
}
Thanks