zefyx
04-17-2009, 10:00 PM
https://vborg.vbsupport.ru/external/2015/08/1.jpg
Removes the notice tables borders & replaces them with a snazzy dashed border.
Find in navbar template:
Find:
<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>
Replace with:
<table cellpadding="3" cellspacing="0" width="100%" border="0" align="center">
<tr>
<td style="background:#FFDC84" class="dashed">$notices</td>
</tr>
</table>
Go to Syle Manager -> Main CSS -> Additional CSS Definitions (1st box) & paste:
.dashed {
border: 1px dashed #EEAD09;
}
Substitute the "background:#FFDC84" & border: 1px dashed #EEAD09; with the HEX values for the colors you desire for the background & the dash line's colors.
Enjoy!
Removes the notice tables borders & replaces them with a snazzy dashed border.
Find in navbar template:
Find:
<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>
Replace with:
<table cellpadding="3" cellspacing="0" width="100%" border="0" align="center">
<tr>
<td style="background:#FFDC84" class="dashed">$notices</td>
</tr>
</table>
Go to Syle Manager -> Main CSS -> Additional CSS Definitions (1st box) & paste:
.dashed {
border: 1px dashed #EEAD09;
}
Substitute the "background:#FFDC84" & border: 1px dashed #EEAD09; with the HEX values for the colors you desire for the background & the dash line's colors.
Enjoy!