<div class="related_images">
<img class="related_attachment" src="img url"/>
</div>
<a class="related_title">Stackoverflow</a>
I'd like to know if it's possible to add effects to the .related_attachment
when I hover over the .related_title
since they aren't child elements.
I've tried the following with no luck..
.related_title:hover ~ .related_attachment { opacity: 1; }
.related_title:hover + .related_attachment { opacity: 1; }