Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/10/2017, 08:09
Avatar de ArturoGallegos
ArturoGallegos
Moderador
 
Fecha de Ingreso: febrero-2008
Ubicación: Morelia, México
Mensajes: 6.774
Antigüedad: 16 años, 2 meses
Puntos: 1146
Respuesta: Template con distinto comportamiento en smartphone

tu problema es de CSS clase .sale-box1 en la linea 4046 archivo style.css

tu tienes
Código CSS:
Ver original
  1. .sale-box1 {
  2.     height: 100px;
  3.     left: 0px;
  4.     overflow: hidden;
  5.     position: absolute;
  6.     text-align: center;
  7.     top: 0px;
  8.     width: 100px;
  9. }

debe de ser
Código CSS:
Ver original
  1. .sale-box1 {
  2.     height: 100%;
  3.     left: 0px;
  4.     overflow: hidden;
  5.     position: absolute;
  6.     text-align: center;
  7.     top: 0px;
  8.     width: 100%;
  9.     z-index: 9;
  10. }