Quote:
Originally Posted by animemike
Hi mate how can i make the "Name / Description" box longer it squsshed up all my text
Attachment 102215
Cheers
|
Style manager ->
<Your Style> -> Edit Templates -> Click on the
"<< >>" for expand all groups > Edit
awards_category
Add width for first column and
edit width for second column for example like this:
For the expand first column FIND:
Code:
<td class="thead" nowrap="nowrap">$vbphrase[award_name] / $vbphrase[award_description]</td>
and add WIDTH value (or just replace row with this one):
Code:
<td class="thead" nowrap="nowrap" width="20%">$vbphrase[award_name] / $vbphrase[award_description]</td>
and for width correction FIND:
Code:
<td class="thead" width="100%">$vbphrase[users_with_awards]</td>
and just edit the value to the "100% minus [your first column width]", like this:
Code:
<td class="thead" width="80%">$vbphrase[users_with_awards]</td>
(100-20=80

)
OR you can use fixed values, it works tooo
Save and enjoy
Hope it helps