I want to display some footer logos in white. Then, on hover, they reveal the logos' true colors. I have implemented this on other websites and the background of the original link is simply replaced with the hover background.
I tried implementing this on some newer themes purchased from themeforest, which leads me to believe some newer version of query is doing something weird. On the newer sites, the new background will slide up, or from the bottom right corner. Here is an example of the undesired behavior:
http://idtools.org/id/grasshoppers/new/about.php
I have tried removing .js files and .css files one by one and none had an effect, not even using different jquery versions. How can I figure out what is responsible for this hover animation?
link to desired logos:
http://itp.lucidcentral.org/id/palms/palm-id/index.html
HTML
<div id="logos">
<ul>
<li id="usda"><a href="http://www.usda.gov"></a></li>
<li id="uf"><a href="http://www.ufl.edu"></a></li>
<li id="lucid"><a href="http://www.lucidcentral.com"></a></li>
</ul>
</div>