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 Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hyperlink Underline Removal?

Status
Not open for further replies.

Chadwiskey

Technical User
Jan 5, 2005
7
US
Here's an example:

Does GoLive offer an option to allow a hyperlink to display without an underline? On the link I provided the underline appears only upon mouse over.

How can I get this without using graphics?

Thank You

Chad
 
This can be done with CSS rules.

This rule give the result in your example page:

a:link {text-decoration: none;}

This rule will remove the underline from all links:
a {text-decoration: none;}

Here's a web page for you to check out:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top