[Resolved] change home page to list view in mobile mode

Home Forums Support [Resolved] change home page to list view in mobile mode

Home Forums Support change home page to list view in mobile mode

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1302662
    Medua

    hello how do i change posts in homepage to list view on my website

    #1302716
    Leo
    Staff
    Customer Support

    Hi there,

    What do you mean by list view?

    #1302736
    Medua

    please check this link https://ibb.co/mtQhn0h. I want the site to have this view on mobile.

    #1302772
    Medua

    Hi please help check the question. I’m still waiting

    #1303101
    David
    Staff
    Customer Support

    Hi there,

    try adding this CSS:

    @media(max-width: 768px) {
        .generate-columns-container .entry-header {
            font-size: 12px;
            display: flex;
            flex-direction: column-reverse;
        }
        .generate-columns-container .entry-title {
            font-size: 16px;
            margin-top: 0.5em;
        }
        .generate-columns-container .entry-summary {
            display: none;
        }
        .generate-columns-container .inside-article {
            display: flex;
            flex-direction: row-reverse;
        }
        .post-image-below-header.post-image-aligned-left .inside-article .post-image {
            margin: 0 20px 0 0 !important;
            flex: 1 0 100px;
        }
        .generate-columns-container .resize-featured-image .post-image img {
            width: 100px;
            height: 100%;
            object-fit: cover;
        }
    }
    #1306097
    Medua

    Thanks it worked.

    #1306209
    David
    Staff
    Customer Support

    You’re welcome

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