Tagged: blog grid layout, blog layout, post layout
Hi Support
We have set up the Posts to use the Advance Styling and Blog Layout, Enfold Advanced Layer Editor. Then on the Blog page we have it as a Grid layout to display 2 Post wide on desktop.
However it is very cramped for mobiles.
How do we make it only show one post per line on mobiles. While still showing 2 posts and sidebar on desktop?
Thanks in advance for your help :)
Cheers Dave
Hey Dave,
Thank you for your question and the login, I have added this to your child theme stylesheet
@media only screen and (max-width: 767px){
.responsive #top #wrap_all .avia-content-slider-even .slide-entry.first {
margin-left: 0;
width: 100%;
}
}
@media only screen and (max-width: 479px){
.responsive #top #wrap_all .avia-content-slider-even .slide-entry {
margin-left: 0;
clear: both;
width: 100%;
}
}
please clear your browser cache and check.
Best regards,
Mike
Thanks Mike you are awesome :)