Forum Moderators: not2easy
#bwi:link {
border: 1px solid #00CC00;
}
#bwi:active{
border: 1px solid #00CC00;
display: block;
}
#bwi:visited {
border: 1px solid #00CC00;
display: block;
}
And don't go "#bwi a:hover" unless #bwi is your container for your links, since that code means "style any hovered anchor which is a descendant of #bwi", nothing about just styling #bwi.
If #bwi is just 1 link, then what you had already was fine. (just fix the order)
If #bwi is used for multiple links, you have a problem.
ids (prefix #) are used for SINGLE elements only. You should never have more than 1 element with the same id per page.