Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #579756

    Hi,

    I post photos to my site through custom post type using an advanced layout builder. I use a color section with an image media element in the builder. I like how it looks on desktop, however I would like it to be full width on mobile screens (no bezels / edges). Is that possible?

    #580033

    Hi mepho!

    Add this to your custom CSS.

    @media screen and (max-width: 767px) {
    .responsive #top #wrap_all .container { width: 100% !important; max-width: 100% !important; }
    }

    Cheers!
    Elliott

    #580058

    Perfect, thank you so much! Don’t mean to be annoying, but I have another thread hanging for some time now – I would appreciate any help. Thank you again for this

    #580736

    Hi,

    We have a lot of open requests right now but we will get to your other thread soon enough, thanks for being patient with us.

    Best regards,
    Rikard

    #974684

    Hi,
    I have the same question as the 1st post and the above custom CSS has helped solve my issue.

    However, would it be possible to have a slight bezels on mobile?
    Currently this CSS stretched all the images and content right to the edge of the mobile and it is hard for reading.

    #974687

    Kindly ignore my previous message, I got it! Just changed the percentage

    @media screen and (max-width: 767px) {
    .responsive #top #wrap_all .container { width: 90% !important; max-width: 90% !important; }
    }

    Thanks!

    #974922

    Hi DesmondUDT,

    Glad you got it working for you! :)

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1234952

    Hi I want to do this but only for images as the css you have given means the burger menu and header logo etc all lock up to the edges.

    #1235313

    Hi amyteslin,

    To get images to go full width then you need to alter the width of the container element, that would include the header. All other content would also go full width, and it might take a lot of custom CSS to have the other content not go full width.

    Best regards,
    Rikard

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