Smart mobile version

Hello,

When viewing the website from a smart mobile (using this layout), there is unused space (left and right).
How can we disable the left and right space, so there there is more space for text and images.

Thanks in advance

image

Comments

  • Hi,

    basically this is not a good thing to make what you need (because many elements need to be modified) but you can try to play with below css:
    @media only screen and (max-width: 767px) {
        #Wrapper {
            width: 100% !important;
        }  
        .section_wrapper, .container, .four.columns {
            width: 100% !important;
        }
    }
    But if above css won't need good enough, then we do not have anything else what we can recommend at this moment.
  • Thank you for your help anyway!

    You have great support!
Sign In or Register to comment.