PDA

View Full Version : [vB] Update: fix for alignment issues in IE


CustomerService
11-22-2007, 05:21 PM
Issue: some forums report cell alignment issues in IE

Changes: percentage widths used instead of fixed pixels

Manual Update Instructions:

In forumhome_forumbit_level1_nopost find

<tr align="center">
<td width="77" class="thead" style="background: url($stylevar[imgdir_misc]/thead-left.gif) top left no-repeat;">&nbsp;</td>
<td class="thead" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="215">$vbphrase[last_post]</td>
<td class="thead" width="60">$vbphrase[threads]</td>
<td class="thead" width="60" style="background: url($stylevar[imgdir_misc]/thead-right.gif) top right no-repeat;">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>and replace with

<tr align="center">
<td width="5%" class="thead" style="background: url($stylevar[imgdir_misc]/thead-left.gif) top left no-repeat;">&nbsp;</td>
<td class="thead" align="$stylevar[left]" width="55%">$vbphrase[forum]</td>
<td class="thead" width="30%">$vbphrase[last_post]</td>
<td class="thead" width="5%">$vbphrase[threads]</td>
<td class="thead" width="5%" style="background: url($stylevar[imgdir_misc]/thead-right.gif) top right no-repeat;">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>