Hi there,
On my home page I have a “blog posts” item set to display on grid format, 2 columns. This looks great on large screens but on a smartphone the two columns dont look very good. Is there CSS I can add to make the grid display as one column on smart phones?
Thanks!
Dustin
Hi dusty909!
Please use the below CSS in Enfold > General Styling > Quick CSS
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all .slide-entry {
width: 100%!important;
margin-left: 0%!important;
}
}
Cheers!
Vinay Kashyap
Worked perfectly – thanks!