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

Removing underlines from linked items... 1

Status
Not open for further replies.

annebooth

Technical User
Aug 25, 2003
15
US
I have posted this in the Adobe GoLive forum, but nobody ever posts there, so maybe someone who knows this program could help me here.

How do I remove the underlines from my links? I have tried everything I can think of, but nothing seems to work. Maybe I'm overlooking it, but I can't even see anything in the JavaScript that shows it is underlined. Oh, and if it means anything, I set the links as an action.

Thanks in advance!
Anne
 
Adding the following to your code may make a difference:
Code:
<style type=&quot;text/css&quot;>
<!--
a {
	text-decoration: none;
}
-->
</style>

Never be afraid to share your dreams with the world.
There's nothing the world loves more than the taste of really sweet dreams.
 
Where would I put that code at?

Here is what I have so far:


<td width=&quot;120&quot;>
<div align=&quot;center&quot;>
<a onclick=&quot;CSAction(new Array(/*CMP*/'40B2608'));return CSClickReturn();&quot; href=&quot;#&quot; csclick=&quot;40B2608&quot;>Temperature</a></div>
</td>
 
Anywhere in between the [tt]<head>[/tt] and [tt]</head>[/tt] tags is the usual place for a style declaration.

If you wanted to only apply it to a particular link, you'd do it inline like so:
[tt]
<a style=&quot;text-decoration: none;&quot;onclick=&quot;CSAction(new Array(/*CMP*/'40B2608'));return CSClickReturn();&quot; href=&quot;#&quot; csclick=&quot;40B2608&quot;>Temperature</a>

Never be afraid to share your dreams with the world.
There's nothing the world loves more than the taste of really sweet dreams.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top