Silver Jcomments template....
I like the prosilver template. But how do we remove the right panel? I just need it like the default theme without the right panel.
Please advice.
Remove this, or comment, in tpl_comment.php:
-------------------------------------------------------------
<dl class="postprofile">
<?php
if ($this->getVar('comment-show-vote', 0) == 1) {
$this->getCommentVote( $comment );
}
?>
<dt>
<?php if ($this->getVar('avatar') == 1) { echo $comment->avatar; } ?><br />
<strong><?php echo $comment->author; ?></strong>
</dt>
<?php if (($this->getVar('comment-show-email') == 1) || ($this->getVar('comment-show-homepage') == 1)) { ?>
<dd>
<ul class="profile-icons">
<?php if ($this->getVar('comment-show-email') == 1) { ?>
<li class="email-icon"><a href="mailto:<?php echo $comment->email; ?>" title="<?php echo 'e-mail: '.$comment->email; ?>"><img src="<?php echo $this->getVar('siteurl').'/components/com_jcomments/tpl/'.$this->getVar('template').'/images/jc_email.gif'; ?>" alt="@" title="<?php echo 'e-mail: '.$comment->email; ?>" /></a></li>
<?php } ?>
<?php if ($this->getVar('comment-show-homepage') == 1) { ?>
<li class="web-icon"><a href="<?php echo $comment->homepage; ?>" rel="nofollow" title="<?php echo 'WWW: '.$comment->homepage; ?>"><img src="<?php echo $this->getVar('siteurl').'/components/com_jcomments/tpl/'.$this->getVar('template').'/images/jc_www.gif'; ?>" alt="WWW" title="<?php echo 'WWW: '.$comment->homepage; ?>" /></a></li>
<?php } ?>
</ul>
</dd>
<?php } ?>
</dl>
---------------------------------------------------------
Then in CSS, style.css, line 188 #jc. postbody put 100% for width.