Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/11/2013, 06:15
gerard094
 
Fecha de Ingreso: junio-2013
Mensajes: 102
Antigüedad: 10 años, 10 meses
Puntos: 1
Respuesta: Adaptar el hover con texto deslizante en Wordpress

Lo he hecho funcionar aunque no sé donde está el error

Así quedo el css y el html

Cita:
#fluid {
width: 400px;
height: 200px;
line-height: 0px;
color: transparent; font-size: 25px;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 300;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#fluid:hover {
line-height: 133px;
color: #575858;
}
#fluid img{
float: left;
margin: 0 15px;
}
#fluid p {
padding-left: 100px;
}
Cita:
<div id="fluid">
<img src="http://localhost/shersy/wp-content/uploads/2013/11/fluid.png">
<p>Diseños Fluidos</p>
</div>