css - Preventing href statements from underlining your text button -
right attempting prevent text button underlining itself. button located in table why have <td>
tag. when apply internal style rid of underlining, remains underlined. how can rid of this, or incorrectly getting rid of this. learned how disable underline here: http://www.pageresource.com/html/link3.htm said before, failed.
<td style="text-decoration:none"><a href="view_topic.php?id=<?php echo $rows['id']; ?>"><?php echo $rows['subject']; ?> </a><br></td>
if absolutely must have styles inline, in case need text-decoration:none
applied in style attribute of anchor, rather table cell:
<a style="text-decoration:none" href="view_topic.php?id=<?php...
doing way though, have apply every element, rather using css class apply links @ once.
Comments
Post a Comment