Quote:
Originally Posted by peugeot405
ok now i see the confusion it's my other mod Split posts/treads like vb3 you have installed. that's why i couldn't find the problem. Sorry, was getting very late at that time.
i'll look in to it tonight.
|
In addtional.css search for:
Code:
.forumbit_post .forumstats, .forumbit_post .forumstats_2 {
display: block;
float: left;
height: 30px;
margin-right: 0;
padding-top: 1.5%;
text-align: center;
width: 7%;
}
and replace it with:
Code:
.forumbit_post .forumstats, .forumbit_post .forumstats_2 {
display: block;
float: left;
height: 30px;
margin-right: 0;
padding-top: 2%;
text-align: center;
width: 6.5%;
background: #333333;
border-left: 2px solid #0d0d0d;
border-right: 2px solid #0d0d0d;
}
.forumbit_post .forumstats, .forumbit_post .forumstats_3 {
display: block;
float: left;
height: 30px;
margin-right: 0;
padding-top: 1.5%;
text-align: center;
width: 6.5%;
}
In forumhome_forumbit_level1_post search for:
Code:
<!-- Split posts/treads like vb3 -->
<div class="forumlastpost td">
<h4 class="lastpostlabel">{vb:rawphrase last_post}:</h4>
<div>
{vb:raw forum.lastpostinfo}
</div>
</div>
<h4 class="nocss_label">{vb:rawphrase forum_statistics}:</h4>
<ul class="forumstats_2 td">
<li>{vb:raw forum.threadcount}</li>
</ul>
<ul class="forumstats_2 td">
<li>{vb:raw forum.replycount}</li>
</ul>
<!-- Split posts/treads like vb3 -->
and replace it with:
Code:
<!-- Split posts/treads like vb3 -->
<div class="forumlastpost td">
<h4 class="lastpostlabel">{vb:rawphrase last_post}:</h4>
<div>
{vb:raw forum.lastpostinfo}
</div>
</div>
<h4 class="nocss_label">{vb:rawphrase forum_statistics}:</h4>
<ul class="forumstats_2 td">
<li>{vb:raw forum.threadcount}</li>
</ul>
<ul class="forumstats_3 td">
<li>{vb:raw forum.replycount}</li>
</ul>
<!-- Split posts/treads like vb3 -->
In forumhome_forumbit_level2_post search for:
Code:
<!-- Split posts/treads like vb3 -->
<div class="forumlastpost td">
<h4 class="lastpostlabel">{vb:rawphrase last_post}:</h4>
<div>
{vb:raw forum.lastpostinfo}
</div>
</div>
<h4 class="nocss_label">{vb:rawphrase forum_statistics}:</h4>
<ul class="forumstats_2 td">
<li>{vb:raw forum.threadcount}</li>
</ul>
<ul class="forumstats_2 td">
<li>{vb:raw forum.replycount}</li>
</ul>
<!-- Split posts/treads like vb3 -->
and replace it with:
Code:
<!-- Split posts/treads like vb3 -->
<div class="forumlastpost td">
<h4 class="lastpostlabel">{vb:rawphrase last_post}:</h4>
<div>
{vb:raw forum.lastpostinfo}
</div>
</div>
<h4 class="nocss_label">{vb:rawphrase forum_statistics}:</h4>
<ul class="forumstats_2 td">
<li>{vb:raw forum.threadcount}</li>
</ul>
<ul class="forumstats_3 td">
<li>{vb:raw forum.replycount}</li>
</ul>
<!-- Split posts/treads like vb3 -->