[Resolved] How can i make image wider on mobile devices?

Home Forums Support [Resolved] How can i make image wider on mobile devices?

Home Forums Support How can i make image wider on mobile devices?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1032489
    Daniel

    How can i remove the white space or make image wider on mobile & table devices? See image: https://prnt.sc/pi6ubn

    #1032673
    David
    Staff
    Customer Support

    Hi there,

    try adding this CSS:

    @media (max-width: 768px) {
        .post-image {
            margin-left: -30px !important;
            margin-right: -30px !important;
        }
    
        .post-image img {
            width: 100%;
        }
    }
    #1032872
    Daniel

    Thanks it worked!

    #1032874
    David
    Staff
    Customer Support

    You’re welcome

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