Hi,

below codes give me underline of every link. How can i remove the underlines?

<table align="center"
width="27%" border=0 bordercolor="#FF0000" >

<tr><td> <A HREF="#TaxFile">NY Multi Service -Taxfile, Accounting, Auditing,..</A></td> </tr>
<tr><td> <A HREF="#VA">VA Multi Service -Taxfile, Accounting, Auditing,..</A></td> </tr>
<tr><td> <A HREF="#Insurance">Insurance in USA</A></td> </tr>
<tr><td> <A HREF="#TaxFile">NY Multi Service -Taxfile, accounting, auditing, partnership, notary, ...</A> </td> </tr>
</table>

the link "VA Multi Service -Taxfile, Accounting, Auditing,.." is underlined. same for other links. how can i not have the underlines?

pls advise.

thanks.

Recommended Answers

All 4 Replies

css style

a:link {text-decoration:none; }
a:hover { }
a:active { }
a:visited { }

Rtfm
Read
the
Fine
Manual

I am sorry. This answer is brief. Did not understand. someone pls clarify how to solve it?

thx.

Member Avatar for cuonic
<head>
<style>
a:link { text-decoration:none; }
a:hover { text-decoration:none; }
a:active { text-decoration:none; }
a:visited { text-decoration:none; }
</style>
</head>
<body>
<table align="center"
width="27%" border=0 bordercolor="#FF0000" >

<tr><td> <A HREF="#TaxFile">NY Multi Service -Taxfile, Accounting, Auditing,..</A></td> </tr>
<tr><td> <A HREF="#VA">VA Multi Service -Taxfile, Accounting, Auditing,..</A></td> </tr>
<tr><td> <A HREF="#Insurance">Insurance in USA</A></td> </tr>
<tr><td> <A HREF="#TaxFile">NY Multi Service -Taxfile, accounting, auditing, partnership, notary, ...</A> </td> </tr>
</table>
</body>

By the way, this has absolutely nothing to do with PHP -.-

Thanks. It works.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.