I have a unordered list as a thumbnail gallery, now when a user clicks on a thumbnail, I want it to have a border color of #000. Until the user clicks a new thumbnail I want it to stay black, is this possible through css?
Thank you
Printable View
I have a unordered list as a thumbnail gallery, now when a user clicks on a thumbnail, I want it to have a border color of #000. Until the user clicks a new thumbnail I want it to stay black, is this possible through css?
Thank you
THANK YOU! Your cssplay link worked greatly!
One last thing:
http://farm2.static.flickr.com/1399/...e99a255b_o.jpg
Can I disable the thin-dotted line on it's a:focus state in FF?
this usually helps
Code:a{
outline: 0;
}
Brilliant. Thanks!