Media Queries
-
I have a responsive site that I am happy with. However, I’ve created two menu bars on my own without the responsive menus available.
What’s the best way to write CSS for the two menu bars to show on smaller screens? (i.e. phone, iPad, smaller screens)
I’ve tried
@media screen and ( min-width: 401px ) {
secondary.menu {
width: 49%;
margin-right: 2%;
}
}but that didn’t work. I’ve tried a variety of code but noting seems to work. I just want the secondary menu & tertiary menu to display on all smaller screens.
Thanks for your help
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Media Queries’ is closed to new replies.