Quote:
Originally Posted by develop_827
Try changing the following StyleVars in Admin CP:
postbit_background
postbit_userinfo_background
|
That might work in VB4 but this is a VB3 request.
In VB 3.x edit your postbit_legacy template-
For area 1:
Find the code:
Code:
<td class="alt1" id="td_post_$post[postid]" style="border-$stylevar[right]: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]">
and change it to
Code:
<td class="alt1" id="td_post_$post[postid]" style="border-$stylevar[right]: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; background:yellow;">
Added code in red. Change "yellow" to whatever color or hex color code (#FFFFFF) you want.
For the bottom of the box find the code:
Code:
<td class="alt1" align="$stylevar[right]" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-$stylevar[left]: 0px; border-top: 0px">
and make the same change
For area 2:
Same template, look for this code:
Code:
<td class="alt2" rowspan="2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px">
and make it something like:
Code:
<td class="alt2" rowspan="2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px; background:orange;">
For the bottom part of the box find:
Code:
<td class="alt2" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px">
and make the same change.