I've seen some sites that use jQuery Animate to get their images to grow when moused over and shrink back to their original size when moused out. I'm trying to do this on some images but I can't quite get it right. The images are sized 60px by 60px. I went ahead and removed the flailing attempts code and have presented the initial code for assistance: HTML:
<div id="icons">
<ul>
<li><a href="services.php"><img src="img/asdf.jpg" alt="" /></a></li>
<li><a href="services.php"><img src="img/wasd.jpg" alt="" /></a></li>
<li><a href="services.php"><img src="img/dsdf.jpg" alt="" /></a></li>
<li><a href="services.php"><img src="img/wafds.jpg" alt="" /></a></li>
</ul>
</div>
CSS:
#icons {
margin: 0 auto;
padding-top: 20px;
width: 560px;
}
#icons ul li {
display: inline;
list-style-type: none;
padding-right: 65px;
}