I was wondering,
I want to change other elements that are inside of a main div when one hovers.
<div id="post">
<h1>The Title</h1>
<p class="text">Text</p>
<p class="other-text">Text</p>
</div>
So if one hovers over the "post" div then the the "#post h1" title would change from black to blue.. If it's css3 that's fine for me because it's a visual feature that isn't needed.
Is this better suited for jquery or something?