CSS Down
Posted: 30 January 2007 10:20 PM   [ Ignore ]
Newbie
Rank
Total Posts:  8
Joined  2006-09-10

Hello everyone I am having an issue that I’ll like some help on. Okay what I basically want is help on the CSS so when I click on a link, in it’s active or visited the image to have a different color border. I am currently using this and the only part that works is the hover which turns the border red. I would appreciate your help
#bwi:hover {
  border: 1px solid #FF0000;
}

#bwi:link {
  border: 1px solid #00CC00;
}

#bwi:active{
  border: 1px solid #00CC00;
  display: block;
}
#bwi:visited {
  border: 1px solid #00CC00;
  display: block;
}

Profile