Hojalaparra Posted September 2, 2015 Share Posted September 2, 2015 Hola, he añadido en el header un banner directamente a través del global.css añadiendo: #header { background:no-repeat url('../img/header/banner-envio-gratis.png') whitesmoke; background-position: center; z-index: 5003; } el problema que tengo es que quiero deshabilitar esta imagen para temas móviles, o para pantallas inferiores a 767 pixeles, he visto que tengo que añadir algo tal que así: @media screen and (max-device-width : 480px) { #header{ display:none; } pero el problema es que lógicamente se me oculta todo el header, alguien me puede ayudar para que solo se oculte el banner que le he introducido?? Saludos cordiales Link to comment Share on other sites More sharing options...
ventura Posted September 2, 2015 Share Posted September 2, 2015 (edited) @media screen and (max-device-width : 480px) { #header{ background:none; } } Edited September 2, 2015 by ventura (see edit history) Link to comment Share on other sites More sharing options...
Hojalaparra Posted September 2, 2015 Author Share Posted September 2, 2015 Gracias, jope, si que era simple, no se como no lo vi... esto es lo que pasa cuando aprendes a base de horas y horas... al final lo dejé como así: #header { background:no-repeat url('../img/header/banner-envio-gratis.png') whitesmoke; background-position: center; z-index: 5003; } @media screen and (max-device-width : 767px) { #header{ background:none; } y todo correcto. Muchas gracias! Link to comment Share on other sites More sharing options...
Hojalaparra Posted September 2, 2015 Author Share Posted September 2, 2015 Vaya, pense que funcionaba correctamente, ahora lo que me pasa es que en el tema móvil se me ha ocultado, pero el tema web me aparece todo descolocado y mal.... qué puede ser? Link to comment Share on other sites More sharing options...
Hojalaparra Posted September 2, 2015 Author Share Posted September 2, 2015 Me faltaba un corchete, tema solucionado: #header { background:no-repeat url('../img/header/banner-envio-gratis.png') whitesmoke; background-position: center; z-index: 5003; } @media screen and (max-device-width : 767px) { #header{ background:none; } } Saludos! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now