Is there a way to disable css on mobile?

I’m using this custom css inside tag:

html, body { max-width: 100%; overflow-x: hidden; }

But i just want to use it for desktop and tablets. Is there a way to disable it on mobile?

you need a media query that will work for mobile… have a look at this

1 Like

ahh perfect, just what i needed. Thank you!