Aquarii
05-06-2010, 06:31 AM
Trying to figure out how to make my horizontal menu have different hover colors for each menu item.
Here's the CSS: (currently has one hover color)
/* HORIZONTAL MENU */
#menumoo{padding:0; margin:0;float:left; width:1000px; background:url(img/menu_bg.gif); height:32px;}
#menumoo ul{ background:url(img/menu_bg.gif); float:right; list-style-type:none; display:inline-block;height:32px;padding:0; margin:0;}
#menumoo li{float:right; display:inline-block; text-align:center; height:32px}
#menumoo li img{display:inline-block;}
#menumoo a{padding:7px 10px 5px 10px; text-decoration:none; color:#fff; background:url("img/menu_seperator.gif") bottom left no-repeat; font:Arial, Helvetica, sans-serif; font-weight:bold; font-size:12px;display:inline-block;height:20px;text-shadow: 0px 2px 3px #000;}
#menumoo a:hover{padding:7px 10px 5px 10px; color:#eee; font:Arial, Helvetica, sans-serif; font-weight:bold; font-size:12px;display:inline-block; height:20px; background:#41a0ff url("img/menu_seperator.gif") bottom left no-repeat;}
/* END HORIZONTAL MENU */
And here's the HTML:
<div id="menumoo">
<!--NAVIGATION-->
<ul>
<li><a href="/seasonal.php">Small Animals</a></li>
<li><a href="/reptile.php">Reptiles</a></li>
<li><a href="/deal_of_the_day.php">Fish</a></li>
<li><a href="/western.php">Birds</a></li>
<li><a href="/english.php">Cats</a></li>
<li><a href="/catalog.php">Dogs</a></li>
</ul>
</div><!--end menu div-->
Thanks in advance.
Here's the CSS: (currently has one hover color)
/* HORIZONTAL MENU */
#menumoo{padding:0; margin:0;float:left; width:1000px; background:url(img/menu_bg.gif); height:32px;}
#menumoo ul{ background:url(img/menu_bg.gif); float:right; list-style-type:none; display:inline-block;height:32px;padding:0; margin:0;}
#menumoo li{float:right; display:inline-block; text-align:center; height:32px}
#menumoo li img{display:inline-block;}
#menumoo a{padding:7px 10px 5px 10px; text-decoration:none; color:#fff; background:url("img/menu_seperator.gif") bottom left no-repeat; font:Arial, Helvetica, sans-serif; font-weight:bold; font-size:12px;display:inline-block;height:20px;text-shadow: 0px 2px 3px #000;}
#menumoo a:hover{padding:7px 10px 5px 10px; color:#eee; font:Arial, Helvetica, sans-serif; font-weight:bold; font-size:12px;display:inline-block; height:20px; background:#41a0ff url("img/menu_seperator.gif") bottom left no-repeat;}
/* END HORIZONTAL MENU */
And here's the HTML:
<div id="menumoo">
<!--NAVIGATION-->
<ul>
<li><a href="/seasonal.php">Small Animals</a></li>
<li><a href="/reptile.php">Reptiles</a></li>
<li><a href="/deal_of_the_day.php">Fish</a></li>
<li><a href="/western.php">Birds</a></li>
<li><a href="/english.php">Cats</a></li>
<li><a href="/catalog.php">Dogs</a></li>
</ul>
</div><!--end menu div-->
Thanks in advance.