GrayScale 0 Denunciar post Postado Outubro 27, 2010 queria saber como eu mudo a cor do comentário do autor da notícia postada, e mudar a cor do admin tbm. comments.php <?php /** * @package WordPress * @subpackage Default_Theme */ // Do not delete these lines if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) die ('Por favor não carregue esta página directamente. Obrigado!'); if ( post_password_required() ) { ?> <p class="nocomments">Este artigo está protegido com senha.</p> <?php return; } ?> <!-- You can start editing here. --> <div id="comments"> <div class="meta"> <p class="rss"> <?php comments_rss_link("subscreva os comentários RSS") ?> </p> <?php if ('open' == $post->comment_status) : ?> <!-- If comments are open, but there are no comments. --> <p> <?php comments_number('Não existem comentários para este post', 'Existe <strong>um</strong> comentário para este post', 'Existem <strong>%</strong> comentários para este post' );?> </p> <?php else : // comments are closed ?> <!-- If comments are closed. --> <p>Comentários encerrados</p> <?php endif; ?> </div> <?php if ( have_comments() ) : ?> <ol class="commentlist"> <?php wp_list_comments('avatar_size=50'); ?> </ol> <?php previous_comments_link() ?> <li class="next"> <?php next_comments_link() ?> </ul> <?php endif; ?> <?php if ('open' == $post->comment_status) : ?> <div id="respond"> <h3> <?php comment_form_title( 'Por favor, sinta-se livre para comentar', 'Deixe uma resposta a %s' ); ?> </h3> <div class="cancel-comment-reply"> <small> <?php cancel_comment_reply_link(); ?> </small> </div> <?php if ( get_option('comment_registration') && !$user_ID ) : ?> <p class="not_registered">Voce deve estar <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>">logado</a> para enviar um comentário.</p> <?php else : ?> <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform"> <?php if ( $user_ID ) : ?> <p class="logged_as">Conectado como <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="Desconectar desta conta">Desconectar »</a></p> <?php else : ?> <div class="row"> <input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> /> <label for="author">Nome <?php if ($req) echo "*"; ?> </label> </div> <div class="row"> <input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> /> <label for="email">E-mail <?php if ($req) echo "*"; ?> </label> </div> <div class="row"> <input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" /> <label for="url">Seu site</label> </div> <?php endif; ?> <div class="row"> <label for="comment">Mensagem</label> <textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea> </div> <div class="submit"> <button type="submit" id="submit" tabindex="5">Enviar</button> <?php if ($req) echo "<p class=\"req\">* campos obrigatórios</p>"; ?> <?php comment_id_fields(); ?> </div> <?php do_action('comment_form', $post->ID); ?> </form> </div> <?php endif; // If registration required and not logged in ?> <?php endif; // if you delete this the sky will fall on your head ?> </div> Compartilhar este post Link para o post Compartilhar em outros sites
Anderson Narciso 3 Denunciar post Postado Outubro 28, 2010 Folha de estilo (style.css) Procure os trechos: #entry-author-info { background: #f2f7fc; border-top: 4px solid #000; clear: both; font-size: 14px; line-height: 20px; margin: 24px 0; overflow: hidden; padding: 18px 20px; } #entry-author-info #author-avatar { background: #fff; border: 1px solid #e7e7e7; float: left; height: 60px; margin: 0 -104px 0 0; padding: 11px; } #entry-author-info #author-description { float: left; margin: 0 0 0 104px; } #entry-author-info h2 { color: #000; font-size: 100%; font-weight: bold; margin-bottom: 0; } .comment-author { } .comment-author cite { color: #000; font-style: normal; font-weight: bold; } .comment-author .says { font-style: italic; } Altere, faça testes... Compartilhar este post Link para o post Compartilhar em outros sites
GrayScale 0 Denunciar post Postado Outubro 28, 2010 Folha de estilo (style.css) Procure os trechos: #entry-author-info { background: #f2f7fc; border-top: 4px solid #000; clear: both; font-size: 14px; line-height: 20px; margin: 24px 0; overflow: hidden; padding: 18px 20px; } #entry-author-info #author-avatar { background: #fff; border: 1px solid #e7e7e7; float: left; height: 60px; margin: 0 -104px 0 0; padding: 11px; } #entry-author-info #author-description { float: left; margin: 0 0 0 104px; } #entry-author-info h2 { color: #000; font-size: 100%; font-weight: bold; margin-bottom: 0; } .comment-author { } .comment-author cite { color: #000; font-style: normal; font-weight: bold; } .comment-author .says { font-style: italic; } Altere, faça testes... não entendi o que voçê quis diser, é pra colar isto no style.css ? Compartilhar este post Link para o post Compartilhar em outros sites
Anderson Narciso 3 Denunciar post Postado Outubro 29, 2010 Você entende algo de css? Esses são os estilos relacionados ao que você alterar.. Compartilhar este post Link para o post Compartilhar em outros sites
GrayScale 0 Denunciar post Postado Outubro 30, 2010 sim, entendo css. Compartilhar este post Link para o post Compartilhar em outros sites