http://pastebin.com/UazPMhBj
Ya he probado con propiedades como display: inline, pero no funciona ( o no se en que div ponerlas )
Si me pueden ayudar les agradeceria MUCHISIMO. De verdad gracias.
Código HTML :
<article id="post-<?php the_ID(); ?>" <?php post_class('list-small-thumb'); ?>> <?php if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail()) ) : ?> <!--<div class="entrada">--> <div class="contenedor"> <div class="entry-header"> <h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> <div class="img-wrapper"> <a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>" class="img-bevel video"> <?php the_post_thumbnail('article-thumb'); ?> </a> </div> </div> </div>
Código CSS :
article.list-small-thumb .img-wrapper{ float: left; width: 150px; height: 200px; } article.list-small-thumb .contenedor { float:left; margin-bottom:50px; } article.list-small-thumb .entry-header { /*display: block;*/ /*margin-left: 200px; padding: 12px 12px 8px 22px;*/ padding: 1px 1px 1px 1px; text-align: center; overflow: hidden; border-radius: 5px; width:150px; }