Is it possible to modify another element that sits outside a hover selector?
For example:
#first-element img:hover {
}
#second-element {
background:url('#');
}
So that you can modify a second element outside a first element upon hovering the first element?
Thanks.