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

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

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

url rewriting - How to redirect a http POST with urlrewritefilter -