I have visited the Spanish version of Selfhtml at www.selfhtml.com
I have some prombles with CSS but the spanish version has not translate this section and I do not speak German.
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.
Best regards
Unfortunately there is not a spanish forum!
No problem !
To change the color of a link you have to write
a:link {color:#FF0000;}
The color of a visited link can be changed by using
a:visited {color:#FF0000;)
To change the decoration:
a:link {text-decoration:none;}
All the features can be combined to
a:link {color:#FF0000; text-decoration:none;}
bye Oliver