How do I make 4 items together as a horizontal or 2 x 2 grid instead of single vertical items? It looks unnecessarily big on mobile view.
1 Like
Please add following css code your assets/theme.css bottom of the file.
@media only screen and (max-width: 749px) {
.logo-bar__item {
display: inline-block !important;
vertical-align: middle;
max-width: 120px;
margin: 0 27.5px 35px;
width: 25% !important;
}
}
Thanks!
1 Like

