I'm attempting to synchronize the activation of these two hover classes:
#recent-posts .content:hover {
-webkit-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.04);
-moz-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.04);
box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.04);
}
#recent-posts img:hover {
outline: 11px solid #ff7454;
margin-bottom: 15px;
}
I want both hover classes to activate when hovering over either content or an image. I've tried various methods and done a lot of research, but it's proven trickier than expected.
Could someone help me out by pointing me in the right direction?
Here is my progress so far on jsfiddle: http://jsfiddle.net/zpwnL/