les commentaire (mise en position )

bon voila toujour avec mon theme toffeelook mais il me reste seulement les commentaire et sa ne marche même pas !!

voila les screen :

je voudrais un affichage comme ceci :

1271376486.PNG


et pour ce qui et de poster un commentaire le capatcha et a moitier cacher :
et les commentaire ne marche pas ! :

1271376622.PNG

voici le code de ma page commentaire ( en php dans le theme ) :
<?php if(!defined('PLX_ROOT')) exit; ?>
<?php # Si on a des commentaires ?>
<?php if($plxShow->plxMotor->plxGlob_coms->count): ?>
	<div id="comments">
		<h2>Commentaires</h2>
		<?php while($plxShow->plxMotor->plxRecord_coms->loop()): # On boucle sur les commentaires ?>
			<div id="<?php $plxShow->comId(); ?>" class="comment type-<?php $plxShow->comType(); ?>">
				<blockquote>
					<p class="info_comment">Le <?php $plxShow->comDate('#num_day #month #num_year(4)'); ?> <?php $plxShow->comAuthor('link'); ?> à dit :</p>
					<p class="content_com"><?php $plxShow->comContent() ?></p>
				</blockquote>
				<div class="clearer"></div>
			</div>
		<?php endwhile; # Fin de la boucle sur les commentaires ?>
		<?php # On affiche le fil Atom de cet article ?>
		<div class="feed_article"><?php $plxShow->comFeed('atom',$plxShow->artId()); ?></div>
	</div>
<?php endif; # Fin du if sur la prescence des commentaires ?>
<?php # Si on autorise les commentaires ?>
<?php if($plxShow->plxMotor->plxRecord_arts->f('allow_com') AND $plxShow->plxMotor->aConf['allow_com']): ?>

        <div id="reply">
		<h3>Ecrire un commentaire</h3>
		<p class="message_com"><?php $plxShow->comMessage(); ?></p>		
        <form action="<?php $plxShow->artUrl(); ?>#form" method="post" id="commentform">
            <div class="gravatar">
              <img src="<?php $plxShow->template(); ?>/images/avatar_comment.gif" alt="" class="avatar"/>
              <p>Want an avatar?<br/>Get a <a href="http://en.gravatar.com/" rel="nofollow">gravatar</a>!</p>
            </div>
            <fieldset>
              <label>Name:
              <input type="text" class="textbox" name="author" id="author" value="<?php $plxShow->comGet('name',''); ?>" size="22" maxlength="20" tabindex="1" /></label>
              <label>E-mail:
              <input type="text" class="textbox" name="email" id="email" value="<?php $plxShow->comGet('mail',''); ?>" size="22" tabindex="2" /></label>
              <label>Website (optional):
              <input type="text" class="textbox" name="url" id="url" value="<?php $plxShow->comGet('site','http://'); ?>" size="22" tabindex="3" /></label>
              <label>Message:
              <textarea name="comment" id="comment" cols="37" rows="6" tabindex="4"><?php $plxShow->comGet('content',''); ?></textarea></label>
                <label><?php # Affichage du capcha anti-spam
			    if($plxShow->plxMotor->aConf['capcha']): ?>
		        <?php $plxShow->capchaQ(); ?> </br> <input name="rep" type="text" size="10" />
		        <input name="rep2" type="hidden" value="<?php $plxShow->capchaR(); ?>" />
			    <?php endif; # Fin du if sur le capcha anti-spam ?> </label>
			    <p class="right"><input type="submit" value="Envoyer" /></p>
            </fieldset>
         </form>
        </div><!--/reply-->
<?php endif; # Fin du if sur l'autorisation des commentaires ?>
voila a vous et merci d'avance ;)

Réponses

  • LewoLewo Member
    Faudrait peut-être aussi la partie CSS...
  • Oui Toffee sans Css ou lien vers le site en question on ne va pas pouvoir t'aider
Connectez-vous ou Inscrivez-vous pour répondre.