Paul - 2011-06-07

I would like to modify the "Select a sub-category for the service…" to have more than two columns. I don't know PHP but this is what i have found. The following line(s) is what grabs the sub service information an creates the table rows.

$oP->p("<tr><td style=\"vertical-align:top\"><p><input name=\"attr_servicesubcategory_id\" $sChecked type=\"radio\" id=\"subsvc_$id\" value=\"$id\"></p></td><td style=\"vertical-align:top\"><p><b><label for=\"subsvc_$id\">".htmlentities($oSubService->GetName(), ENT_QUOTES, 'UTF-8')."</label></b></p>");

If there is only one service the table would look something like this.

<table>
<p>
 <tr>
  <td style="vertical-align:top"><p><input name="attr_servicesubcategory_id"  type="radio" id="subsvc_28" value="28"></p>
  </td>
  <td style="vertical-align:top"><p><b><label for="subsvc_28">Protools</label></b></p></p><p><p>Protools Audio Editor</p>
  </td>
 </tr>
</p>
</table>

There are 2 columns per sub service. I would like to use five and create what appears to be two columns of services.

<table>
    <p>
    <tr>
        <td style="vertical-align:top"><p><input name="attr_servicesubcategory_id"  type="radio" id="subsvc_28" value="28"></p>
        </td>
        <td style="vertical-align:top"><p><b><label for="subsvc_28">Protools</label></b></p></p><p><p>Protools Audio Editor</p>
        </td>
        <td>&nbsp;</td>
        <td style="vertical-align:top"><p><input name="attr_servicesubcategory_id"  type="radio" id="subsvc_29" value="29"></p>
        </td>
        <td style="vertical-align:top"><p><b><label for="subsvc_28">Adobe Audition</label></b></p></p><p><p>Adobe Audition Audio Editor</p>
        </td>
    </tr>
    </p>
</table>

Is this possible and what do i need to change in the /portal/index.php file or the portal.css file.

Thanks for your help,

Paul