Put a background image behind active link on nav bar

cmunlockj18

New Member
I am looking to create a nav menu where the active link has a background image behind it and as the next link is clicked the image goes to the next active link. I am not sure if this can be done solely with CSS or if some jQuery is required also.\[code\]<div id="header"> <div id="company_name"> </div> <ul id="gen_navigation" class="container_fixed"> <li><a href="http://stackoverflow.com/questions/13871733/#"><span>Home</span></a></li> <li><a href="http://stackoverflow.com/questions/13871733/#"><span>About</span></a></li> <li><a href="http://stackoverflow.com/questions/13871733/#"><span>Technology</span></a></li> <li><a href="http://stackoverflow.com/questions/13871733/#"><span>Applications</span></a></li> <li><a href="http://stackoverflow.com/questions/13871733/#"><span>Benefits</span></a></li> <li><a href="http://stackoverflow.com/questions/13871733/#"><span>Inquiries</span></a></li> </ul></div>\[/code\]http://jsfiddle.net/Dk6eq/Note: I only have the basic css and html at the moment
 
Back
Top