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

    Hi Team, i would like for a page to be non-responsive when less than 450px. how can i achieve that?

    #517621

    Hi David57!

    Add this to a codeblock element in the page.

    <style type = "text/css">
    @media screen and (max-width: 450px){
    #wrap_all { width: 1300px !important; }
    }
    </style>

    Regards,
    Elliott

    #518107

    Hi, i tried but it doesn’t work.

    #518383

    Hey!

    It’s working fine. Perhaps you need to increase the 450px value to target larger screen sizes?

    Best regards,
    Elliott

    #518462

    Hi Eillot, thanks it works!

    But how do i get to scroll right to view the remainder images?

    #519103

    Hi!

    Add this inside the media query:

    html.responsive, .responsive body {
        overflow-x: visible;
    }
    
    #wrap_all {
        overflow-x: scroll;
    }

    Regards,
    Ismael

    #520030

    Hi,

    i added into the media query but doesn’t work.

    <style type = “text/css”>
    @media screen and (max-width: 600px){
    #wrap_all { width: 1300px !important; }
    html.responsive, .responsive body {
    overflow-x: visible;
    }
    #wrap_all {
    overflow-x: scroll;
    }
    }
    </style>

    #520756

    Hi!

    Please include this also:

    .responsive #top {
        overflow-x: scroll;
    }

    Cheers!
    Ismael

    #520917

    it works, thanks!

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘removing responsive page’ is closed to new replies.