Ver Mensaje Individual
  #3 (permalink)  
Antiguo 14/03/2015, 12:29
Avatar de AngelKrak
AngelKrak
 
Fecha de Ingreso: noviembre-2014
Mensajes: 917
Antigüedad: 9 años, 5 meses
Puntos: 91
Respuesta: menu desaparece en dispositivos moviles

Cita:
Iniciado por MMan Ver Mensaje
Código CSS:
Ver original
  1. @media screen and (max-width: 865px) {
  2.     .secondary-navigation { width: 100% }
  3.     .main-navigation #navigation {
  4.         text-align: center;
  5.         border: none;
  6.     }
  7.     #navigation ul {
  8.         float: none;
  9.         display: inline-block;
  10.     }
  11.     .secondary-navigation {
  12.         padding: 5px 0;
  13.         background: none;
  14.         border-bottom: 0!important;
  15.     }
  16.     .js #navigation > ul {[B][COLOR="Red"] display: none[/COLOR][/B]}
eso es lo que tienes
es lo mismo que yo hiba a decir, tu problema seria ese >_< aun que se ve un poco mal en moviles :/
Código:
@media screen and (max-width: 865px)
.js #navigation > ul {
display: none;
}