Regardless of where the links are in the html, if i hover over one, for example, an image could change, the background could change, or whatever... anywhere in the site.
best answer = simple way without javascript
good enough = elegant way using javascript
edit: i already know about this...
a:hover ~ #b{
background: red;
}
"~ #b" = next siblings
"+ #b" = first next sibling
" #b" descendant of a
that just effects siblings. what if they have completely different parents?
if there's any neat tricks, website design. that's what i'm looking for.