This may seem like a simple question, but what I am trying to do is this:
I have a CSS which looks like this:
.menu-item:hover ul { height: 50px; }
And items like tis:
<div class="menu-item">
<h4><a href="#">About</a></h4>
<ul>
<li><a href="#">Biography</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
When the h4 item is hovered, I'd like to set that CSS property to some value, let's say 300px. When the mouse leaves, I'd like to reset it back to 50px.
h4is hovered you want theulto change height?