Say for example I have the following code:
HTML:
<ul>
<li>
<a>
<span class="title">Home</span>
<span class="description">My House</span>
</a>
</li>
<li>
<a>
<span class="title">About</span>
<span class="description">Foo</span>
</a>
</li>
</ul>
How can i make ONLY the title class glow, as in an outer glow effect when the li element is hovered over.
I found this plugin: http://nakajima.github.com/jquery-glow/, but i cant figure out how to make it work to my needs. EDIT: It isn't really what i'm looking for as it relies on text-shadow.
I wanted this to work in ie7+ therefore i can't really use text shadow.<