سلام مجدد
چطوری اندازه ی جعبه ی نظرات را تغییر دهم ؟
مثلا عرض آن را کمتر کنم ؟
کدهای بخش کامنت به صورت زیر هستند
ولی من هر کدام از عددها را که عوض کردم تغییری نکردند؟
<?php // Do not delete these lines
if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
die ('Please do not load this page directly. Thanks!');
if (!empty($post->post_password)) { // if there's a password
if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) { // and it doesn't match the cookie
?>
<p class="nocomments"><?php _e("This post is password protected. Enter the password to view comments."); ?>
<?php
return;
}
}
/* This variable is for alternating comment background */
$oddcomment = 'alt';
?>
<!-- You can start editing here. -->
<div class="commentform">
<?php if ($comments) : ?>
<h3 id="comments"><?php comments_number('بدون پاسخ', 'یک پاسخ', '% پاسخ' );?> به “ <?php the_title(); ?> ”</h3>
<ol class="commentlist">
<?php foreach ($comments as $comment) : ?>
<li class="<?php echo $oddcomment; ?>" id="comment-<?php comment_ID() ?>">
<div class="lightblue"><?php comment_author_link() ?> گفت:
<?php if ($comment->comment_approved == '0') : ?>
<em>نظر شما در انتظار تایید میباشد.</em>
<?php endif; ?>
<small class="commentmetadata"><a href="#comment-<?php comment_ID() ?>" title=""><?php comment_date('F jS, Y') ?> at <?php comment_time() ?></a> <?php edit_comment_link('e','',''); ?></small></div>
<?php comment_text() ?>
</li>
<?php /* Changes every other comment to a different class */
if ('alt' == $oddcomment) $oddcomment = 'alt';
else $oddcomment = 'alt2';
?>
<?php endforeach; /* end for each comment */ ?>
</ol>
<?php else : // this is displayed if there are no comments so far ?>
<?php if ('open' == $post-> comment_status) : ?>
<!-- If comments are open, but there are no comments. -->
<?php else : // comments are closed ?>
<!-- If comments are closed. -->
<p class="nocomments">نظرات بسته است.
<?php endif; ?>
<?php endif; ?>
<?php if ('open' == $post-> comment_status) : ?>
<h3 id="respond">چیزی برای گفتن دارید ؟</h3>
<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
شما برای ارسال نظر باید <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php the_permalink(); ?>">وارد شده باشید</a>.
<?php else : ?>
<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
<?php if ( $user_ID ) : ?>
به عنوان <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a> وارد شده اید. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account') ?>">خروج »</a>
<?php else : ?>
<input class="backlight" type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" />
<label for="author"><small>نام <?php if ($req) _e('(required)'); ?></small></label>
<input class="backlight" type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" />
<label for="email"><small>ایمیل (نمایش داده نمیشود) <?php if ($req) _e('(required)'); ?></small></label>
<input class="backlight" type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
<label for="url"><small>سایت</small></label>
<?php endif; ?>
<!--<small><strong>XHTML:</strong> You can use these tags: <?php echo allowed_tags(); ?></small>
-->
<textarea name="comment" id="comment" rows="10" cols="4" tabindex="4" style="overflow-x:hidden; overflow-y: auto;"></textarea>
<input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" />
<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
</div>
<?php do_action('comment_form', $post->ID); ?>
</form>
<?php endif; // If registration required and not logged in ?>
<?php endif; // if you delete this the sky will fall on your head ?>
و همچنین فایل های کامنت در سی اس اس
/********* Begin Comments *********/
h3#comments {
direction: rtl;
}
.commentlist {
padding: 0 0 0 0;
text-align: justify;
margin: 0 0 0 0;
font-size: 0.9em;
font-family: Tahoma, Arial, Helvetica, Sans-Serif;
color: #333333;
}
.commentlist li {
margin: 10px 0 0 0;
padding: 5px 10px 3px 10px;
list-style: none;
background-color: #FFFFFA;
border-bottom: 1px solid #a3a3a3;
border-right: 1px solid #a3a3a3;
direction: rtl;
}
.commentlist p {
margin-left: 0px;
}
.commenttext {
padding-right: 67px;
text-align: justify;
}
#commentform p {
margin: 5px 0;
}
.nocomments {
text-align: center;
margin: 0;
padding: 0;
}
.commentmetadata {
margin: 0;
display: block;
}
.lightblue {
padding: 5px;
background: #DFECFB;
-moz-border-radius:5px;
}
/********* End Comments *********/