I have a grid of elements over which I have an h1 text tag. Each of the grid elements has a hover action, and I would like to activate that hover action for the grid elements below the text. However, I cannot put the z-index of the grid elements higher, as that would obscure the text.
A basic idea of the html: (and here's an actually useful JSFiddle link: http://jsfiddle.net/evd3v/)
<div id="background" class="header">
</div>
<div id="overlay">
<table>...</table> <!-- A grid that covers the background image -->
</div>
<h1 id="title" class="title">My Page Title</h1>
<h2 id="detail" class="title">Designed by Me</h2>