Hi All,
This ease transitioning stuff is all a bit new to me so apologies if its obvious!
I have a menu and each <li> has its own class as the background image for each is different.
What i'm trying to do is get the background image on the hover to fade in over the top of the original. I dont want the original to start off with a lower opacity etc, and i just want it to apply to the background-image, nothing else. Can this be done?? Ive tried a number of different things but nothing seems to be working..
Code CSS:/* -------------------sub nav-------------------- */ #sub_nav { width:1000px; height:250px; display:inline; } #sub_nav ul { list-style: none; padding: 0; margin: 0; } #sub_nav li { float: left; margin: 0px; } #sub_nav li a { font-family:'TrumpGothicEastRegular', Helvetica, sans-serif; font-size:24px; text-align:center; height: 30px; width: 250px; display: block; color: #000000; text-decoration: none; padding-top:220px; margin-top:-4px; } #sub_nav li.ff a { background-image:url(images/FF1.png); } #sub_nav li.bc a { background-image:url(images/BC1.png); } #sub_nav li.el a { background-image:url(images/EL1.png); } #sub_nav li.tv a { background-image:url(images/TV1.png); } #sub_nav li.ff a:hover { background-image:url(images/FF2.png); } #sub_nav li.bc a:hover { background-image:url(images/BC2.png); } #sub_nav li.el a:hover { background-image:url(images/EL2.png); } #sub_nav li.tv a:hover { background-image:url(images/TV2.png); }
Any advice would be much appreciated - thanks in advance!



Reply With Quote


. Glad I could be of help.

Bookmarks