Forum Moderators: not2easy
It all works perfectly for hover, but for some reason it will not work for focus, even though the two are defined in exactly the same way.
How can I fix this?
Thanks in advance!
#thumb ul
{
padding: 0px;
margin: 0px;
float: left;
width: 100%;
}
#thumb ul li
{
display: inline;
}
#thumb ul li a
{
float: left;
width: 272px;
height: 204px;
margin: 0px 8px 16px 8px;
opacity: 0.5;
filter: alpha(opacity=50);
}
#thumb ul li a:hover, ul li a:focus
{
opacity: 1;
filter: alpha(opacity=100);
}