miércoles, 12 de mayo de 2010

Los pies de post


Adorno el pie de post metiéndolo en un recuadro blanco y delimitándolo por debajo con una línea de puntos naranja.

Añadir el siguiente código (en rojo) a la clase .post-footer
.post-footer {
padding:0px;
margin:0px;
color:$footercolor;
font-size:80%; padding:5px; /* Añado algo de espacio texto-borde */
background-color:#ffffff;
border-bottom-color:#e0ad12;
border-bottom-style:dotted;
border-bottom-width:1px;

}

Y además modifico la forma de presentación del número de comentarios en el pie de post sustituyendo el siguiente código en azul:
</span>
<span class='post-comment-link'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:post.allowComments'>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><b:if cond='data:post.numComments == 1'>1<data:top.commentLabel/><b:else/><data:post.numComments/> <data:top.commentLabelPlural/></b:if></a>
</b:if>
</b:if>
</span>
<span class='post--icons'>

Por el siguiente código en rojo:
</span>
<span class='post-comment-link'>
<b:if cond='data:blog.pageType != &quot;item&quot;'>
<b:if cond='data:post.allowComments'>
<b:if cond='data:post.numComments == 1'>1 Comentario
<b:else/><data:post.numComments/><data:top.commentLabelPlural/>
</b:if>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'>(VER LOS COMENTARIOS Y/O ESCRIBIR UNO)</a>

</b:if>
</b:if>
</span>
<span class='post--icons'>