I’m trying to do CSS Sprites, such as: http://www.alistapart.com/articles/sprites
My menu is going to dynamically generated via WordPress. I have 3 basic states: always on, hover and active. This will be the same state for all buttons.
I want to use a basic underorded list such as:
<div class="navigation">
<ul>
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 1</a></li>
</ul>
Every technique I’ve seen uses ID’s on either the LI or A state’s, is there away to do this using the basic structure above?
Never mind I figured it out: