Este es mi codigo he intentado varias cosas hacerlo directamente con la propiedad style de la etiqueta <a></a> y luego colocarlo con css y no se que podra ser..??
Les agradeceria cualquier ayuda.. otro punto es que los links me funcionan en Firefox pero con Internet Explorer no.. uso Firefox 2.0.0.13 e Internet Explorer 7..
<div id="tabla">
<table width="200" border="1">
<tr>
<td width="157">Last Group Modified</td>
</tr>
<?php do { ?>
<tr>
<td><a href="images/3.jpg" style="text-decoration:none"><?php echo $row_Recordset1['group']; ?></a></td>
</tr>
<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</table>
</div>
<div id="tablalateral">
<table width="200" border="1">
<tr>
<td>Last Group Created</td>
</tr>
<?php do { ?>
<tr>
<td><a href="images/2.jpg" style="text-decoration:none;"><?php echo $row_Recordset2['group']; ?></a></td>
</tr>
<?php } while ($row_Recordset2 = mysql_fetch_assoc($Recordset2)); ?>
</table>
</div>