Reply To: Different CSS for mobile and desktop?

Home Forums Support Different CSS for mobile and desktop? Reply To: Different CSS for mobile and desktop?

Home Forums Support Different CSS for mobile and desktop? Reply To: Different CSS for mobile and desktop?

#199827
Tom
Lead Developer
Lead Developer

You can use media queries for this:

@media (max-width: 768px) {
    /* CSS in here for mobile only */
}

@media (min-width: 769px) {
    /* CSS in here for desktop only */
}

Let me know if that helps or not 🙂