Ipuck
05-16-2008, 10:00 PM
Removes the table borders and "Notices" from the notices. (I really didn't like it)
I couldn't find any mods to do that.
Modification:
Find in navbar template:
<if condition="$show['notices']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase[notices]</td>
</tr>
<tr>
<td class="alt1">$notices</td>
</tr>
</table>
<br />
</if>
Replace with:
<if condition="$show['notices']">
<table border="0" width="100%" align="center">
<tr>
<td class="alt1">$notices</td>
</tr>
</table>
<br />
</if>
I couldn't find any mods to do that.
Modification:
Find in navbar template:
<if condition="$show['notices']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase[notices]</td>
</tr>
<tr>
<td class="alt1">$notices</td>
</tr>
</table>
<br />
</if>
Replace with:
<if condition="$show['notices']">
<table border="0" width="100%" align="center">
<tr>
<td class="alt1">$notices</td>
</tr>
</table>
<br />
</if>