Logo

Home | Audio | DIY | Guitar | iPods | Music | Brain/Problem Solving | Links| Site Map

This work is licensed under a Creative Commons License.

Links Without Underline

Learn how to create links without the underline in Dreamweaver using stylesheets.

Have you wanted to get rid of the underline in a link? Well! It's really simple using CSS styles. Learn how to make links with no underline.

If you use Dreamweaver as your HTML editor you need to go to your style palette, make a new style and apply the style on your link. Here are the steps:

1. Click on Windows > Styles
2. Click on the 'Style Sheet' button
3. Click on New
4. Give your style an appropriate name like 'nounderline' and click on OK.
5. Here's the trick - check the box next to None. This means that this style has no decoration.
6. Now you need to apply this style to all the links in your page.

The code will look like this:

<style type="text/css">
<!--
.nounderline { text-decoration: none}
-->
</style>

 

 

 


Important: You need to copy the style within the <HEAD> tags.

If you want the no underline style for all the links in your site you can use the a:link style. When you are creating a new style you need to choose 'Use CSS Selector'. Click on OK and make your style (e.g Arial, size 10, color #000066, no underline). Click on the check box next to None to make sure your links are without an underline.

The code will look like this:

<!--
a:link { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; color: #000066; text-decoration: none}
-->


 

 

 

Once you have made the style you don't need to apply it on all the links, it will automatically be the default style for all the links.

 

Home | Audio | DIY | Guitar | iPods | Music | Links | Site Map | Contact

Top

Creative Commons License