Site logo

Archived topic

How to make homepage style in mobile view like this ?

5 replies · Started by Fajri on May 7, 2022

Viewing posts 1–6 of 6

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

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

This archived topic is closed to new replies.