wordpress - How to define how a menu is shown depending on the screen resolution -
i trying modify wordpress template. not sure how change menu type shown depending on screen resolution. please me.
you can style menus using simple media queries
@media (max-width: 600px) { .thisclass { color:red; } }
in example, 'thisclass' have red font if screen width less 600px. can read more media queries here.
Comments
Post a Comment