[Resolved] How do I design such layout?

Home Forums Support [Resolved] How do I design such layout?

Home Forums Support How do I design such layout?

Viewing 7 posts - 16 through 22 (of 22 total)
  • Author
    Posts
  • #1302270
    vanya

    Thanks Tom. Worked like charm.
    Desktop and mobile view is sorted now.

    Tablet view looks ugly. Any code for better tablet view?

    #1302682
    vanya

    Thanks Tom. Worked like charm for mobile view
    Desktop and mobile view is sorted now.
    Tablet view looks ugly. Any code for better tablet view?

    #1302684
    Tom
    Lead Developer
    Lead Developer

    What would you want to tweak to make it better?

    #1302735
    vanya

    I would like to decrease the size of the featured image in archive page.
    Help me with the code only for decreasing the tablet view featured images and it should NOT disturb the current featured image size in mobile and desktop view.

    #1303817
    Tom
    Lead Developer
    Lead Developer

    The same code applies, you just need to adjust the media query value and the size values:

    @media (max-width: 1024px) {
        body:not(.post-image-aligned-center) .inside-article .post-image img {
            height: 150px;
            width: 200px;
            object-fit: cover;
            border-radius: 3px;
            margin-right: 10px;
        }
    }
    #1304103
    vanya

    Thanks. It helped ๐Ÿ™‚
    Closing it for now.

    #1304192
    Tom
    Lead Developer
    Lead Developer

    You’re welcome ๐Ÿ™‚

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