Site logo

[Resolved] Figures (img + caption) full width in mobile view

Home Forums Support [Resolved] Figures (img + caption) full width in mobile view

Home Forums Support Figures (img + caption) full width in mobile view

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #2561350
    twarrior

    Following this post:
    https://generatepress.com/forums/topic/full-width-images-in-all-pages-posts-on-mobile/?bbp_reply_to=1835614&_wpnonce=4758f74e47

    I have tried this code from David to make images on pages display full width on mobile, but doesnt work:

    @media (max-width:768px) {
        .entry-content figure {
          margin-left: -10px;
          max-width: 100vw !important;
        }
    }

    any idea to make figures (img + caption) full width in mobile view?

    #2561371
    David
    Staff
    Customer Support

    Hi there,

    the url is behind a maintenance mode, can i have a login ? 🙂

    #2561383
    twarrior

    sorry. maintenance mode off

    #2561432
    David
    Staff
    Customer Support

    Try this:

    @media (max-width: 768px) {
        .entry-content figure[class*="image"] {
            margin-left: -10px;
            margin-right: -10px;
            max-width: 100vw !important;
        }
    }

    i also limited the css to affect only figure elements that are for the image
    Just in case there are other non image figures on the page.

    #2561449
    twarrior

    great!

    #2561486
    David
    Staff
    Customer Support

    Glad to be of help

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