Forum Moderators: not2easy
a.one:link {color: #ff0000}
a.one:visited {color: #0000ff}
a.one:hover {color: #ffcc00}
a.one:active {color: rgb(90,00,33)}
i then wen to the page where i wanted to attach classes to the images and typed in the following:
<a class=".one" href="..
i'm using a theme in FP2000 and i'm not sure if things are getting crossed up or maybe i'm not cascading things right, but i feel like i got the code right. Right? i can't tell, been staring at it too long. oh, just in case anyone is wondering, i;m not trying to change the images, but just the border that surronds and higlights the link when click, move your mouse, and are visiting the specific page. please help!?
If you are trying to change a border you will need to use the border property:
a.one:link {border: 1px solid #f00}
a.one:visited {border: 1px solid #00f}
a.one:hover {border: 1px solid #fc0}
a.one:active {border: 1px solid rgb(90,00,33)}
HTH