nlozovan

Untitled

May 7th, 2014
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. @media only screen and (min-width: 768px){
  2. /*top menu is hiding*/
  3. .top_menu {
  4. display:none;
  5. }
  6.  
  7. }
  8.  
  9. @media only screen and (max-width: 767px){
  10. /*top menu is showing*/
  11. .top_menu {
  12. display:block;
  13. }
  14.  
  15. /*main menu hides*/
  16. .row .menu {
  17. display:none;
  18. }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment