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

how to make link underlined or turn color

Status
Not open for further replies.

symbols

Technical User
Joined
Dec 13, 2000
Messages
52
Location
CA
I notice a lot of web site when you move your mouse to any text link, it turns the link either underlined or change color. I tried to find it in Dreamweaver but no luck. Did I miss anything or it requires an extension? If it is extension related, what is the name the extension and where I can downlaod it.

tks a million
 
Use CSS:

<head>

<style>
a
{
Font-family: Arial;
text-decoration: none;
font-size:11pt;
color: blue;
}

a:visited
{
Font-family: Arial;
text-decoration: none;
font-size:11p;t;
color: blue
}

a:hover
{
Font-family: Arial;
text-decoration: none;
font-size:11pt;
color: #00CC00
}
</style>

<head>

The above shows changing colour on mouse over (in the a:hover part), keep colour the same as the above sections if you don't want it to change, and change the text-decoration from &quot;none&quot; to &quot;underline&quot; to underline on mouse over.

You can do a lot with CSS, check out the HTML and CSS forum for more.

Hope that helps.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top