Site logo

[Resolved] How to make homepage style in mobile view like this ?

Home Forums Support [Resolved] How to make homepage style in mobile view like this ?

Home Forums Support How to make homepage style in mobile view like this ?

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #2212714
    Fajri

    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

    #2212720
    Leo
    Staff
    Customer Support

    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

    #2212995
    Fajri

    I’ve follow the tutorial.
    but not working well

    #2213100
    David
    Staff
    Customer Support

    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.

    #2213531
    Fajri

    Worked!
    Thank u so much 🙂

    #2213810
    David
    Staff
    Customer Support

    You’re welcome

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.