web page links

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can anyone tell me how to modify a font in a CSS file. I want the link to
stay blue even after it has been used. I know this can be helpfull in most
cases.

Desmond.
 
I have tried this without success. What I wanted was to put it in a style
sheet. Here is the entry

..standard
{
FONT-WEIGHT: normal;
FONT-SIZE: 12pt;
COLOR: black;
FONT-FAMILY: 'Arial Narrow'
a:visited { color:blue; }
}

Desmond.
 
Bad syntax - it should be this -

..standard
{
FONT-WEIGHT: normal;
FONT-SIZE: 12pt;
COLOR: black;
FONT-FAMILY: 'Arial Narrow'
}
a:visited
{
color:blue;
}

However, if you are trying to make the visited link ONLY apply when it is
within a container with a class of "standard", then it would be this -

..standard
{
FONT-WEIGHT: normal;
FONT-SIZE: 12pt;
COLOR: black;
FONT-FAMILY: 'Arial Narrow'
}
..standard a:visited
{
color:blue;
}
 
Back
Top