CustomerService
08-14-2008, 09:55 AM
Fundamental's templates have been updated with the latest maintenance updates.
Additionally, the follow changes were made:
1. Replaced the quick reply icon with a text button
2. Replaced stock email.gif with custom image (/buttons folder)
3. Improved the style of Notices:
In the navbar template, I replaced:
<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>
<br />with
<if condition="$show['notices']">
<div id="noticesBg">
<h3 style="margin:0;">$vbphrase[notices]</h3>
$notices
</div>
<br />
</if>Then in All Style Options -> Additional CSS I added at the bottom:
#noticesBg {
padding:10px;
border-bottom:1px solid #2C6C8F;
border-right:1px solid #2C6C8F;
margin-top:20px;
background-color:#56A1CA;
color:white;
}
#noticesBg a:hover {
color: #DFF4FF;
font-weight:bold;
}4. I decreased the size of the fonts in the popups to 90%. In All Style Options, I changed:
Popup Menu Option Row
Popup Menu Highlighted Option
Looks much better.
Additionally, the follow changes were made:
1. Replaced the quick reply icon with a text button
2. Replaced stock email.gif with custom image (/buttons folder)
3. Improved the style of Notices:
In the navbar template, I replaced:
<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>
<br />with
<if condition="$show['notices']">
<div id="noticesBg">
<h3 style="margin:0;">$vbphrase[notices]</h3>
$notices
</div>
<br />
</if>Then in All Style Options -> Additional CSS I added at the bottom:
#noticesBg {
padding:10px;
border-bottom:1px solid #2C6C8F;
border-right:1px solid #2C6C8F;
margin-top:20px;
background-color:#56A1CA;
color:white;
}
#noticesBg a:hover {
color: #DFF4FF;
font-weight:bold;
}4. I decreased the size of the fonts in the popups to 90%. In All Style Options, I changed:
Popup Menu Option Row
Popup Menu Highlighted Option
Looks much better.