I'm having trouble communicating with a div that is not in the same container as the one I am currently hovering over. My goal is to alter the background color of the picture div when the home div is being hovered over, both of which are located within the navBar div:
.navBar .home:hover ~ div.picture {
background:#900; }
However, if I place home or picture within another div, I lose access to them.
Is there a way to work around this issue?