Denis: I do not speak German!

Beitrag lesen

My questions ist: How can I get that some links take another color and none-decoration. The futher links of the pages have another color and decorations. All this in an external CSS file.

Hi Pedro!
Below please find a part of the external css-file I use with http://www.mopedfahrer.de . I think, this is what you are looking for.

a:link { color:#FAD68B; font-weight:bold; text-decoration:none; }
a:visited { color:#FEF1A9; font-weight:bold; text-decoration:none; }
a:alink { color:#FF0000; font-weight:bold; text-decoration:none; }
a:hover { color:#FF9E3E; font-weight:bold; text-decoration:none; }

a:hover only works with later versions of IE.

In your html file you have to refer to the external CSS like this:

<link rel="stylesheet" type="text/css" href="../mfmainscr.css" media="screen">

Hope this will help you. Have Fun!
Denis