Hi,
I want to change the style of an element when another element is hovered over. For example, I need to change the look of <div id="1"> when the user hovers over <div id="2">.
I know this is possible by using a code like this:
#1:hover #2 {style goes here}
However, in order for this to work, #2 must be inside #1.
So, my question is, is there any way to do this WITHOUT #2 being inside #1?
Thanks in advance, and sorry if this isn't very clear - I can clarify some more if needed