Maybe I shoul explain It like this. Would it be possible to display the attributes in table like this.
Code:
<table width="329" border="1">
<tr>
<th scope="col"><span class="style1">Option Name </span></th>
<th scope="col"><span class="style1">Desc 1 </span></th>
<th scope="col"><span class="style1">Desc 2 </span></th>
</tr>
<tr>
<th scope="col"><span class="style1">
<input name="radiobutton" type="radio" value="radiobutton" />
A </span></th>
<th scope="col"><span class="style1">12 Months </span></th>
<th scope="col"><span class="style1">£20</span></th>
</tr>
<tr>
<td><center class="style2">
<strong>
<input name="radiobutton" type="radio" value="radiobutton" />
B </strong>
</center> </td>
<td><center class="style2">
<strong> 18 Months </strong>
</center> </td>
<td><center class="style2">
<strong> £25 </strong>
</center></td>
</tr>
</table>
Instead of Like this;
Code:
<table width="329" border="1">
<tr>
<th scope="col"><span class="style1">Option Name </span></th>
</tr>
<tr>
<th scope="col"><div align="left"><span class="style1">
<input name="radiobutton" type="radio" value="radiobutton" />
A </span><span class="style1">12 Months </span><span class="style1">£20</span></div></th>
</tr>
<tr>
<td> <div align="left"><strong>
<input name="radiobutton" type="radio" value="radiobutton" />
B </strong><strong>18 Months </strong><strong>£25 </strong>
</div>
<center class="style2">
</center> </td>
</tr>
</table>
Visually I just think that It would have a better inpact espetially since we have over 20 options per product.
Bookmarks