I have a static website with approx. 8 menu items. I am writing media queries for mobile version. But I need to hide a particular menu item like Gallery in mobile as I don't want it be shown on mobile. Can anybody help me out?
Asked
Active
Viewed 141 times
-1
-
@media (min-width:600px) { .menu { display:none; } } Try this code – Rohit Azad Malik Mar 25 '14 at 05:54
-
http://stackoverflow.com/questions/8352919/css-media-queries-target-mobile-devices-without-specifying-width-pixel-ratio – Richa Mar 25 '14 at 05:58
-
Hi Rohit, hope your answer will hide the whole menu not a particular menu item like gallery ... Thanks. – Vijay Mar 25 '14 at 05:59
1 Answers
0
Use display:none;
on that div with media query, which you want to hide.

Beardminator
- 784
- 8
- 20
-
Hi, I dont want to hide the whole div just a single menu item in mobile version ... thanks. – Vijay Mar 25 '14 at 06:57