Site logo

Archived topic

Different menu look for mobile as opposed to desktop

3 replies · Started by William on February 23, 2021

Viewing posts 1–4 of 4

Hi there,

I styled the menu drop down etc. for the primary menu a certain way on desktop here.

Is there a way to style the mobile menu different? Is it as simple as using CSS with @media ?

Kind regards,

Will

Hi Will,

Yup - I would wrap your desktop CSS with this media query:
@media (min-width: 769px) { }

Then you can have a separate set of CSS for mobile if you'd like:
@media (max-width: 768px) { }

Gotcha, thanks Leo!

No problem :)

This archived topic is closed to new replies.