Forum Moderators: not2easy
can anyone figure out how they are accomplishing that background highlighting effect
It's a basic hover effect using the :hover pseudoclass, as in...
a:hover{background:#000;}
In their case it's something like...
#ID .CLASS:hover{background:#000;}
...where #ID is a div and .CLASS is a classname applied to an <a>nchor tag.
cEM