-1

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?

Charles
  • 48,924
  • 13
  • 96
  • 136
Vijay
  • 19
  • 2
  • 5

1 Answers1

0

Use display:none; on that div with media query, which you want to hide.

Beardminator
  • 777
  • 7
  • 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