Hi Team, i would like for a page to be non-responsive when less than 450px. how can i achieve that?
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
Hi, i tried but it doesn’t work.
Hey!
It’s working fine. Perhaps you need to increase the 450px value to target larger screen sizes?
Best regards,
Elliott
Hi Eillot, thanks it works!
But how do i get to scroll right to view the remainder images?
Hi!
Add this inside the media query:
html.responsive, .responsive body {
overflow-x: visible;
}
#wrap_all {
overflow-x: scroll;
}
Regards,
Ismael
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>
Hi!
Please include this also:
.responsive #top {
overflow-x: scroll;
}
Cheers!
Ismael
it works, thanks!