Alignement par rapport à une image - HTML/CSS - Programmation
MarshPosté le 20-05-2008 à 01:00:53
Hello,
Bon voila j'ai donc une image et en dessous un titre ainsi qu'un bout de texte et les options commentaires et Lire la suite ... je cherche à positionner le titre, texte et les options à droite de l'images ... voici la partie du code qui correspond (si besoin du css, merci de l'indiquer).
Marsh Posté le 20-05-2008 à 01:00:53
Hello,
Bon voila j'ai donc une image et en dessous un titre ainsi qu'un bout de texte et les options commentaires et Lire la suite ... je cherche à positionner le titre, texte et les options à droite de l'images ... voici la partie du code qui correspond (si besoin du css, merci de l'indiquer).
<div id="latest_post"> <!-- start latest_post -->
<h3 class="mast">Dernier Article</h3>
<?php if ( get_post_meta($post->ID, 'latest_home_img', true) ) { ?>
<div id="latest_post_image" align="left">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Lien Permanent vers <?php the_title(); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/latest/<?php echo get_post_meta($post->ID, "latest_home_img", $single = true); ?>" alt="<?php bloginfo('name'); ?>: Latest post" width="56" height="76" /></a>
</div>
<?php } ?>
<h3 class="latest_post_title" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink(); ?>" rel="bookmark" title="Lien Permanent vers <?php the_title(); ?>"><?php the_title(); ?></a></h3>
<p><?php echo strip_tags(get_the_excerpt(), '<a><strong>'); ?></p>
<div class="latest_post_meta">
<span class="latest_read_on"><a href="<?php the_permalink(); ?>" rel="bookmark" title="Lien Permanent vers <?php the_title(); ?>">Lire la Suite</a></span>
<span class="latest_comments"><?php comments_popup_link('Poster un commentaire', 'Un commentaire', '% commentaires', '', 'Commentaires clos'); ?></span>
</div>
</div> <!-- end latest_post -->
Merci d'avance