CustomerService
08-07-2008, 09:07 AM
Issue
Notices had a negative conditional and were styled unattractively.
Changes made:
In the navbar template, I replaced this code:
<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>with:
<if condition="$show['notices']">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="tcat2-l"></td>
<td width="100%" class="tcat2"><strong>Notices</strong></td>
<td class="tcat2-r"></td>
</tr>
</table>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt1">$notices</td>
</tr>
</table>
<br />
</if>The master archive has been updated.!coffee
Notices had a negative conditional and were styled unattractively.
Changes made:
In the navbar template, I replaced this code:
<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>with:
<if condition="$show['notices']">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="tcat2-l"></td>
<td width="100%" class="tcat2"><strong>Notices</strong></td>
<td class="tcat2-r"></td>
</tr>
</table>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt1">$notices</td>
</tr>
</table>
<br />
</if>The master archive has been updated.!coffee