This topic is locked
[SOLVED]

 How to make the words on the left side of each colum

8/10/2010 11:30:52 AM
ASPRunnerPro General questions
N
netgrass author

Hi All,
I am a new guy to asprunner,

does anyone can teach me how to setup and meke all the words on the left side of each colum (default is on the middl)
this is I wish: on the left side

this is the default: on the middl
Thanks for your support.

A
ann 8/11/2010

Hi,
to change alignment for the values open ASPRunnerPro6.2/templates/layouts/YoutTemplateName/list.htm, find this code:

<td valign="middle" class="borderbody" {$##@f.strName g##_style}>

{$##@f.strName g##_value}

</td>



and replace it with this one:

<td valign="middle" align=left class="borderbody" {$##@f.strName g##_style}>

{$##@f.strName g##_value}

</td>
N
netgrass author 8/22/2010



Hi,
to change alignment for the values open ASPRunnerPro6.2/templates/layouts/YoutTemplateName/list.htm, find this code:

<td valign="middle" class="borderbody" {$##@f.strName g##_style}>

{$##@f.strName g##_value}

</td>



and replace it with this one:

<td valign="middle" align=left class="borderbody" {$##@f.strName g##_style}>

{$##@f.strName g##_value}

</td>



Thanks for your supports,

now it works,
Thank you very much.