I have the following..
<table id='table_columns'>
<td align="center">
<input type="radio" name="WIDTH" value="1" <?php echo ($config->get('WIDTH','COLUMNS') == "1")?'CHECKED':'';?> />
<p>4 Columns</p>
</td>
<td align="center">
<input type="radio" name="WIDTH" value="2" <?php echo ($config->get('WIDTH','COLUMNS') == "2")?'CHECKED':'';?> />
<p>3 Columns</p>
</td>
<td align="center">
<input type="radio" name="WIDTH" value="3" <?php echo ($config->get('WIDTH','COLUMNS') == "3")?'CHECKED':'';?> />
<p>Custom</p>
</td>
<tr>
<td align="right">
<p>Column 1</p>
</td>
<td align="left">
<input class="txt" size="3" maxlength="3" name="WIDTH1" Title="Insert the desired width" value="<?php echo $config->get('WIDTH1','COLUMNS')?>" />
</td>
</tr>
When the Custom radio button is checked I would like the text box below to appear. If any of the other radio buttons are checked I don't want it to show. How would I do this?
Thanks