как изменить background по бокам блога?

igravbiser.com
если стоит большое расширение экрана – то по бокам блога виден серый background.
где и как его можно изменить на черный?
в :
Список стилей -?

Боковая колонка – ?

Шаблон страницы -?

Основной шаблон – ?

в style.css

body {
font-size: 62.5%; /* Resets 1em to 10px */
font-family: ‘Lucida Grande’, Verdana, Arial, Sans-Serif;
background-color:#000;
color: #fff;
text-align: center;
}

спасииибооо!

http://igravbiser.com/2008/03/05/privet-mir/#comment-7

вопрос – как сделать отображение всех комментариев на черном фоне?
куда что прописать?

сomments.php

<?php foreach ($comments as $comment) : ?>

<li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>">
<cite><?php comment_author_link() ?></cite> Says:
<?php if ($comment->comment_approved == ‘0’) : ?>
<em>Your comment is awaiting moderation.</em>
<?php endif; ?>
<br />

<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(‘edit’,’&nbsp;&nbsp;’,”); ?></small>

<?php comment_text() ?>

</li>

<?php
/* Changes every other comment to a different class */
$oddcomment = ( empty( $oddcomment ) ) ? ‘class="alt" ‘ : ”;
?>

<?php endforeach; /* end for each comment */ ?>

где тут что прописать – чтоб изменить цвет?

Anonymous
Отправить
Ответ на: