How to disable the mobile and the tablet views?
When you export you can delete or better yet ‘mark out’ using the following media queries:
/*@media (max-width: 991px) {
.stuff {
...
}
}
@media (max-width: 767px) {
.stuff {
...
}
}*/
in your .css file
Just remember, any styles in these widths trickle down to the mobile version so commenting them out will lose those inherited rules.
As an alternative, you could simply wrap your design in a Section, and set that Section’s min-width to a specific value (e.g. 1024px) to achieve a minimum width for your entire design.
1 Like