Archived topic
How do i change the columns on mobile
5 replies · Started by Mouhcine on February 28, 2022
Viewing posts 1–6 of 6
Hello
On mobile the page shows 1 column of posts. I want two or three
Thank you
Hi there,
can you share a link to the page where i can see these columns ?
Hello
On homepage, category page..etc on desktop i have posts on 5 columns and i would like to have two or three columns on mobile.
Check the link in private.
Try adding this CSS:
@media(max-width: 1024px) {
.generate-columns-container {
margin-left: -20px !important;
}
.generate-columns-container .generate-columns {
flex: 1 1 200px;
width: unset;
}
.generate-columns-container .generate-columns, .generate-columns-container>* {
padding-left: 20px !important;
}
}
@media(max-width: 420px) {
.generate-columns-container .generate-columns {
flex: 1 1 160px;
}
}
Thank you!
You're welcome
This archived topic is closed to new replies.