Anchor(Hyperlink) Color

  • Thread starter Thread starter Angel
  • Start date Start date
A

Angel

In my body html tag I place the following:

<body vLink="green" link="white"
MS_POSITIONING="GridLayout">

For some reason or another when i use a <a href="..">
somewhere on my page it still displays the color blue on
the hyperlink eventhough i set on the body tag to use
white. What is wrong here?
Thanks...
 
try using explicit style reference like
defined in your custom css file
A.CommandButton:link {

text-decoration: none;

color: black;

}

A.CommandButton:visited {

text-decoration: none;

color: black;

}

A.CommandButton:active {

text-decoration: underline;

color: black;

}

A.CommandButton:hover {

text-decoration: none;

color: black;

}

HTH
 
Back
Top