English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

At present all my text links are in blue (purple once visited) and underlined.
Is there any way to change this (eg I would like it to be bold, black and with no underline), apart from replacing it with a graphic?

2007-05-16 00:56:25 · 0 answers · asked by captain_gunner_stag 2 in Computers & Internet Programming & Design

0 answers

To achieve different appearances for links in a page, you should define a CSS style (or stylesheet) for the various link states.

You can learn how to do this using Macromedia's own Dreamweaver tutorials online: http://www.tutorialized.com/tutorials/Dreamweaver/CSS/1

2007-05-16 01:03:31 · answer #1 · answered by The Oracle 6 · 0 0

You can do this in your CSS (stylesheet):

a {
text-decoration:none;
font:weight:bold;
color:black;
}

However I would consider very carefully whether you actually want to do this. People expect links to be blue and underlined, and may not find them if they're not.

At the very least, you should add a 'hover' style as well so that when the mouse is over a link, it goes underlined:

a:hover {
text-decoration:underline;
}

2007-05-16 02:20:38 · answer #2 · answered by Daniel R 6 · 0 0

fedest.com, questions and answers