03/09/2014, 04:02
|
| | Fecha de Ingreso: febrero-2013
Mensajes: 90
Antigüedad: 11 años, 9 meses Puntos: 0 | |
Respuesta: Imagen de entradas con width:100%;
Código:
<section id="articles_list">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<article class="proyecto">
<div class="nombreycategoria">
<h2><span><a href="<?php the_permalink();?>"><?php the_title();?></a></span></h2>
<div class="cat_name"><?php the_category(', ');?></div>
</div>
<div class="entry-content"><?php the_content();?></div>
</article>
<?php endwhile; else: ?>
<?php endif; ?>
</div>
</section>
Código:
#main #articles_list {
clear: both;
width:100%;
}
#main #articles_list article {
width:30%;
margin:25px 5% 25px 0px;
overflow:hidden;
float:left;
}
#main #articles_list .proyecto {
margin-top:15px;
width:100%;
margin-bottom:50px;
margin-right:5%;
overflow:hidden;
float:left;
}
#main #articles_list article .entry-content{
margin:12px 0px 40px 0px;
line-height:150%;
width:100%;
}
|