Quote:
Originally Posted by Quantnet.org
Very nice style indeed. I make this one the default style for my forum. My users seem to get use to the phpbb subSilver style so this one will make them feel at home.
I have a question. When i got a new PM, i have a bar under the navbar showing me that i have new PM. which template do i edit this ?
thanks
|
This code in navbar template:
Code:
<!-- pm notification -->
<if condition="THIS_SCRIPT != 'private' && $show['member'] && $show['pmstats'] && $vbulletin->userinfo['pmunread']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tbody>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div class="pm-new" style="width:$stylevar[formwidth]; text-align: center;">
<phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl_q]">$vbphrase[private_messages_nav]</phrase>
</div>
</div>
</td>
</tr>
</tbody>
</table>
<br />
</if>
<!-- / pm notification -->
Quote:
Originally Posted by ForumOrtami
how is this to correct Problem?
PS : I m sorry. 1 dont speak english enough.
I Have VB 3.6.4..
|
In template forumhome_forumbit_level1_nopost assign width to table cells in this code:
Code:
<tbody>
<tr align="center">
<td class="thead"> </td>
<td class="thead" width="100%" align="$stylevar[left]" nowrap="nowrap">$vbphrase[forum]</td>
<td class="thead" width="175" nowrap="nowrap">$vbphrase[last_post]</td>
<td class="thead" nowrap="nowrap">$vbphrase[threads]</td>
<td class="thead" nowrap="nowrap">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead" nowrap="nowrap">$vbphrase[moderator]</td>
</if>
</tr>
</tbody>
Hovewer even if you assign exact width, browsers might not render table exactly as you instructed because some content might force browser to expand certain rows.