Changing the tablet media query?

Is it possible to change the responsive breakpoint of the tablet media query to be 1024px? I am making my portfolio and will be using an Ipad to present it. I would like the tablet version of my site to appear on Portrait landscape. Any help is really appreciated!

1 Like

Hello @AustinLewis

You can’t add a custom breakpoint for tablet portrait 1024. I am using custom code for this.

<style>
    @media screen and (max-width: 1024px) {
        .element-class {
            element-styles: 0px;
        }
    }
</style> 

Hope this helps :webflow_heart:

1 Like