|
#1
| |||
| |||
| Bug in red carbon 3.7.1
This's happend if we are using FireFox browsers Internet Explorer and Opera is running well.. Need update ASAP |
|
#2
| |||
| |||
| Re: Bug in red carbon 3.7.1
Hello, This happens when the overall width of the forum is too small to accomidate all the navigation items. (I'm assuming you've changed the default value). I recommend you use the two tier navigation system we've intergrated to avoid such problems. (Check the demo forum for example and the documentation for instructions). |
|
#3
| |||
| |||
| Re: Bug in red carbon 3.7.1
I didn't change anythink.. Do you have any wide xml ? by default it's using 1024 resolution? |
|
#4
| |||
| |||
| Re: Bug in red carbon 3.7.1 Quote:
Quote:
Maybe I've misunderstood somthing? |
|
#5
| |||
| |||
| Re: Bug in red carbon 3.7.1
Hi, If i turned on vBulletin Options -> Forum Listings Display -> Show Moderator Column, all thread disappear. Onother think is, Multi Quote button doesn't seems different if we click it? |
|
#6
| |||
| |||
| Re: Bug in red carbon 3.7.1
Hello, This was a reported bug and fixed in our latest release. A manual fix: In the forumhome_forumbit_level1_nopost template Replace: Code: <if condition="$vboptions['showmoderatorcolumn']">
<tr align="center">
<td width="5%" class="thead"> </td>
<td width="40%" class="thead" align="$stylevar[left]">$vbphrase[forum]</td>
<td width="25%" class="thead">$vbphrase[last_post]</td>
<td width="10%" class="thead">$vbphrase[threads]</td>
<td width="10%" class="thead">$vbphrase[posts]</td>
<td width="10%" class="thead">$vbphrase[moderator]</td>
</tr>
<else />
<tr align="center">
<td width="5%" class="thead"> </td>
<td width="50%" class="thead" align="$stylevar[left]">$vbphrase[forum]</td>
<td width="25%" class="thead">$vbphrase[last_post]</td>
<td width="10%" class="thead">$vbphrase[threads]</td>
<td width="10%" class="thead">$vbphrase[posts]</td>
</tr>
$childforumbits
</tbody>
</if>
Code: <if condition="$vboptions['showmoderatorcolumn']">
<tr align="center">
<td width="5%" class="thead"> </td>
<td width="40%" class="thead" align="$stylevar[left]">$vbphrase[forum]</td>
<td width="25%" class="thead">$vbphrase[last_post]</td>
<td width="10%" class="thead">$vbphrase[threads]</td>
<td width="10%" class="thead">$vbphrase[posts]</td>
<td width="10%" class="thead">$vbphrase[moderator]</td>
</tr>
$childforumbits
</tbody>
<else />
<tr align="center">
<td width="5%" class="thead"> </td>
<td width="50%" class="thead" align="$stylevar[left]">$vbphrase[forum]</td>
<td width="25%" class="thead">$vbphrase[last_post]</td>
<td width="10%" class="thead">$vbphrase[threads]</td>
<td width="10%" class="thead">$vbphrase[posts]</td>
</tr>
$childforumbits
</tbody>
</if>
Quote:
Last edited by admin; 11-06-2008 at 09:36 PM. |