Réduire l'espace sous l'article

Je remarque une différence entre le blogue officiel et le mien : le blogue officiel a un espace plus réduit entre le bas de l'article et les icônes de partage sur réseaux sociaux que mon blogue.
Comment puis-je réduire moi aussi cet espace ? Merci d'avance !

Voici mon fichier articlephp :
<?php include(dirname(__FILE__).'/header.php'); # On insere le header ?>
<div id="page">
	<div id="content">
		<h2 class="title"><?php $plxShow->artTitle('link'); ?></h2>
		<p class="cat">Classé dans : <?php $plxShow->artCat(); ?> | <span><?php $plxShow->artNbCom(); ?></span></p>
		<p class="date"><?php $plxShow->artDate('<span>#num_day</span><br />#num_month | #num_year(2)'); ?></p>
		<div class="post"><?php $plxShow->artContent(); ?></div>
<p style="text-align:center"><a title="Identica" href="http://identi.ca//index.php?action=bookmarklet&status_textarea=<?php $plxShow->artTitle(); ?> <?php $plxShow->artUrl('absolu'); ?>"><img src="<?php $plxShow->template(); ?>/img/social/identi_ca.png" border="0" alt="Identi.ca" /></a>
<a title="Twitter" href="http://twitter.com/home?status=<?php $plxShow->artTitle(); ?> <?php $plxShow->artUrl('absolu'); ?>"><img src="<?php $plxShow->template(); ?>/img/social/twitter.png" border="0" alt="Twitter" /></a> 
<a title="Digg" href="http://digg.com/submit?url=<?php $plxShow->artUrl('absolu'); ?>&title=<?php $plxShow->artTitle(); ?>"><img src="<?php $plxShow->template(); ?>/img/social/digg.png" border="0" alt="Digg" /></a> 
<a title="StumbleUpon" href="http://www.stumbleupon.com/submit?url=<?php $plxShow->artUrl('absolu'); ?>&title=<?php $plxShow->artTitle(); ?>"><img src="<?php $plxShow->template(); ?>/img/social/stumble.png" border="0" alt="Stumble" /></a> 
<a title="Delicious" href="http://del.icio.us/post?url=<?php $plxShow->artUrl('absolu'); ?>&title=<?php $plxShow->artTitle(); ?>"><img src="<?php $plxShow->template(); ?>/img/social/delicious.png" border="0" alt="Delicious" /></a> 
<a title="Technorati" href="http://technorati.com/faves?add=<?php $plxShow->artUrl('absolu'); ?>"><img src="<?php $plxShow->template(); ?>/img/social/technorati.png" border="0" alt="Technorati" /></a> 
<a title="Facebook" href="http://www.facebook.com/sharer.php?u=<?php $plxShow->artUrl('absolu'); ?>&t=<?php $plxShow->artTitle(); ?>"><img src="<?php $plxShow->template(); ?>/img/social/facebook.png" border="0" alt="Facebook" /></a></p>
		<?php include(dirname(__FILE__).'/commentaires.php');
 # On insere les commentaires ?>
	</div>
	<?php include(dirname(__FILE__).'/sidebar.php'); # On insere la sidebar ?>
</div>
<?php include(dirname(__FILE__).'/footer.php'); # On insere le footer ?>

Réponses

  • StéphaneStéphane Member, Former PluXml Project Manager
    @antistress: n'hésite pas à utiliser les balises [ code ] [ /code ] (sans espace à l'intérieur des balises) quand tu mets du code dans tes messages, sinon c'est illisible.
    Pour ton problème, les spécialistes du css sauront t'apporter une réponse.

    Consultant PluXml

    Ancien responsable du projet (2010 à 2018)

  • Bonjour,

    Tu parles bien de ce blog ci : http://libre-ouvert.toile-libre.org/?article3/aujourd-hui-est-le-premier-jour-du-reste-de-ma-vie-numerique ?

    Si oui, ça doit être au niveau de ton style.css où tu as :
    #content .post {
    	background : #FFF;
    	border : 1px solid #CCC;
    	margin : 5px 0 20px 0;
    	clear : both;
    	padding : 5px 7px 5px 7px;
    }
    
    En modifiant le 20px de la marge, ça devrait le faire... :-)
  • oui, c'est exactement ça, merci beaucoup !

    Pour info, l'espacement du "Fil des commentaires de cet article" avec le logo RSS, il est défini ici aussi ?
  • m1ckrosm1ckros Member
    janvier 2010 modifié
    Dans le même fichier oui.
    Au niveau de #content .feed_article j'imagine.

    Tu devrais essayer Firebug, tu gagnerais pas mal de temps je pense.
  • cool, merci
    je vais jeter un œil à Firebug
Connectez-vous ou Inscrivez-vous pour répondre.