Hola a todos, quiero darle un estilo a <?php the_excerpt(); ?> pero cuando lo pongo asi:
Código CSS:
Ver original<p class="titled" id="target"><span class="highlight"><?php the_excerpt(); ?></span></p>
No me funciona en cambio si se lo pongo a <?php the_title(); ?
Código CSS:
Ver original<p class="titled" id="target"><span class="highlight"><?php the_title(); ?></span></p>
Sale perfecto, como yo quiero. Alguien sabe cual es el problema? Gracias
EL CSS ES:
Código CSS:
Ver original.titled .highlight {
display: inline;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.72);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#B7000000,endColorstr=#B7000000);
color: white;
font-size:40px;
font-family:"Lato Black";
padding: 0.2rem;
padding-left: 8px;
padding-right: 4px;;
}
.titlede.step-1 .highlight {
box-shadow: 0.5rem 0 0 #ee4035, -0.5rem 0 0 #ee4035;
}
.titlede.step-2 .highlight {
box-shadow: 0.5rem 0 0 blue, -0.5rem 0 0 blue;
}