Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/09/2015, 06:43
Avatar de AngelKrak
AngelKrak
 
Fecha de Ingreso: noviembre-2014
Mensajes: 917
Antigüedad: 10 años
Puntos: 91
Respuesta: Porblemas con @media

amig@ para empezar todos tus Media Queries estaban mal(hasta donde yo se) y tambien el "Viewport" ;)

ahi te dejare el nuevo codigo que te hice que funciona en moviles y pc ;)

<meta name="viewport" content="width=device-width, user-scalable=no">

Código HTML:
Ver original
  1. <header id="header-principal" >
  2.                
  3.        
  4.         <a href="index.html" ><img id="img1" src="http://lorempixel.com/200/100/" ></img> </a>
  5.         <a href="index.html" ><img id="img2" src="http://lorempixel.com/200/100"></img> </a>
  6.  
  7.        
  8.                
  9.         </header>

Código CSS:
Ver original
  1. body {
  2.   margin: 0px;
  3.   font-family: 'Arial';
  4.   height: 100%;
  5. }
  6.  
  7. #header-principal {
  8.   margin: auto;
  9.   width: 100%;
  10.   height: 100px;
  11.   max-height: 120px;
  12.   background: green url('fondo.png') repeat;
  13.   position: static;
  14. }
  15.  
  16. #img1 {
  17.   display: block;
  18. }
  19.  
  20. #img2 {
  21.   display: none;
  22. }
  23.  
  24. @media all and (min-width:800px) {
  25.   #img1 {
  26.     display: none;
  27.   }
  28.   #img2 {
  29.     display: block;
  30.   }
  31. }

Demo:
http://codepen.io/AngelKrak/pen/MawrKZ