Tema: Texto
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 27/03/2011, 18:30
bbrian
 
Fecha de Ingreso: enero-2010
Mensajes: 400
Antigüedad: 14 años, 3 meses
Puntos: 6
Texto

Hola que tal estoy utilizado arthemia, y tengo un problema en el header ( headline )
mi problema es que aparece la imagen de la entrada, abajo el texto y abajo del texto Leer mas >>

Ej:

Godoy Cruz y Tigre igualaron 2 a 2 en Victoria en un partido para el infarto. El Tomba jugó mejor en el primer tiempo, pero se retrasó en el segundo y lo terminó pagando. Donda y Navarro, los goles del Expreso. Stracqualursi lo...
Leer más »


Yo necesito que quede asi:

Godoy Cruz y Tigre igualaron 2 a 2 en Victoria en un partido para el infarto. El Tomba jugó mejor en el primer tiempo, pero se retrasó en el segundo y lo terminó pagando. Donda y Navarro, los goles del Expreso. Stracqualursi lo... Leer más »

No encuentro la forma de que el link Leer más quede al lado y no abajo.
Les dejo el codigo haber si pueden ayudarme gracias.

Código PHP:
    <?php $id =$post->ID;
$the_content =$wpdb->get_var("SELECT post_content FROM $wpdb->posts WHERE ID = $id");
$pattern '!<img.*?src="(.*?)"!';
preg_match_all($pattern$the_content$matches);
$image_src $matches['1'][0]; ?>

    <?php if($image_src != '') { ?><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>">
<img src="<?php echo bloginfo('template_url'); ?>/scripts/timthumb.php?src=<?php echo $image_src?>&amp;w=<?php echo $width?>&amp;h=<?php echo $height?>&amp;zc=1&amp;q=100"
    alt="<?php the_title(); ?>" class="left" <?php if ($style != "wide") { } else { echo "style=\"margin-bottom:10px;padding:0px;\""; } ?> width="<?php echo $width?>px" height="<?php echo $height?>px"  /></a><?php ?>
    <?php ?>
    <div class="meta"><?php the_time('D, j/m/y'?> | <?php if(function_exists('the_views')) { the_views(); } ?> | 
      <?php comments_popup_link('Comentá la nota!''1 Comentario''% Comentarios');?>
    </div>    <?php the_excerpt() ?>
    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">Leer mas &raquo;</a></div>
<?php endwhile; ?>