Archived topic
How to make homepage style in mobile view like this ?
5 replies · Started by Fajri on May 7, 2022
hi, How to make homepage style in mobile view like this ?
I use block element for homepage.
I want to make mobile view homepage like this : https://prnt.sc/0OqSoEDGw1LL
live demo : ponselio.com
Hi there,
Keeping the containers under the grid wrapper at 30%/70% on mobile as you have on the desktop should work:
https://docs.generateblocks.com/article/container-overview/#layout-%E2%80%93-grid-item
I've follow the tutorial.
but not working well
Hi there,
add this CSS to your site:
@media(max-width: 768px) {
body:is(.blog, .archive) article .inside-article .post-image {
width: 100px;
float: left;
margin-right: 15px;
}
body:is(.blog, .archive) article .inside-article .entry-summary {
display: none;
}
}
It will keep the image and title inline and remove the excerpt on small screens.
Worked!
Thank u so much :)
You're welcome