Mon problème est assez simple, comment faut il faire pour pouvoir aligner des articles horizontalement ? J'ai bien tenté d'utiliser des floats mais que nénni...
Voila mon code HTML/PHP:
Et voila mon code CSS:
Merci d'avance à ceux qui tenterons de m'aider...
Antoine2011
Voila mon code HTML/PHP:
<div id="titre_cat">
<h3>Miele<h3>
</div>
<?php
query_posts (array ('category__and' => array (12,27), 'order' => 'DESC'));
if (have_posts('')) :
while (have_posts()) : the_post();
?>
<div id="article">
<div id="titre_article">
<?php the_title(''); ?>
</div>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
</div>
Et voila mon code CSS:
#titre_cat{
font-family: Caviar Dreams;
font-size: 24px;
width: 710px;
border-bottom: solid 1px #000;
padding-top: 40px;
padding-bottom: 10px;
margin-left:40px;
margin-bottom: 20px;
margin-top:0px;
}
#article{
font-family: Arial;
font-size: 14px;
width: 300px;
margin-left:20px;
float:left;
}
#titre_article{
font-size: 18px;
}
Merci d'avance à ceux qui tenterons de m'aider...
Antoine2011