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

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -