Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help with NAME ANCHOR Links — No Underlining Please!

Status
Not open for further replies.

Chinyere

Programmer
Mar 9, 2001
79
US
Hello All,

I am trying to create a simple HTML page with a Name Anchor link (that is, links on the same page - one calls the other). For example:

<A HREF=&quot;#etc&quot;>ETC</a> <!-- at the TOP of the page -->

AND

<A NAME=&quot;etc&quot;>ETC</a> <!-- at the BOTTOM of the page -->

In boh instances, the links are underlined as if they were regular links and not just &quot;NAME ANCHOR&quot; links.

My question: Is there a way to REMOVE both instances of the underlining? I would greatly appreciate anyone's help out there. Thanks.

Chinyere :cool:
 
give the code below a try:

<A href=&quot;#etc&quot; style=&quot;text-decoration: none;&quot;>ETC</a>

AND

<a name=&quot;#etc&quot;>ETC</a>


Hope this helped.
 
Is this maybe what you're looking for?

<a href=&quot;#etc&quot; style=&quot;text-decoration: none&quot;>ETC</a>
 
WebGodiva and aperfectcircle,

THANK YOU!!! Thank you both! Both solutions worked and I will be implementing them immediately! Thanks also for the lightening quick response.

Thank goodness for this forum!

Chinyere :-s
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top