Site logo

Archived topic

How do I make the class only apply when I'm on desktop.

3 replies · Started by Douglas on February 16, 2021

Viewing posts 1–4 of 4

I added a css class from elements.

How do I make the class only apply when I'm on desktop.

Thanks in advance for the help.

Hi Douglas,

You could add a media query like this when you add CSS for this class:

@media (min-width: 769px) {
    .your-css-class {
        your-cutoms-css;
    }
}

Thank You

No problem :)

This archived topic is closed to new replies.