Editing the width of "Last Post" table?

thisisepic

New Member
I'm looking to expand the width of this section, I modified the layout and with this so narrow it looks rather awkward.

68565374.jpg


Help is appreciated, thanks!
 
Search for somthing similar to this:
Code:
<td class="thead" width="100%" align="$stylevar[align=left]">$vbphrase[forum]</td>
      <td class="thead" width="75">$vbphrase[last_post]</td>
      <td class="thead">$vbphrase[threads]</td>
      <td class="thead">$vbphrase[posts]</td>

Normally found in:
forumhome_forumbit_level1_nopost
or
FORUMHOME templates

and change to:
Code:
<td class="thead" width="54%" align="$stylevar[align=left]">$vbphrase[forum]</td>
      <td class="thead" width="30%">$vbphrase[last_post]</td>
      <td class="thead" width="8%">$vbphrase[threads]</td>
      <td class="thead" width="8%">$vbphrase[posts]</td>

Now adjust
Code:
width="??%"
to your desired needs

Note all four should all add up to 100%
 
Back
Top