Wordpress Navigation Bar With Rollover Images

UNOIT

Newbie
Joined
Apr 8, 2011
Messages
37
Reaction score
5
Hi Everyone,

I am trying to figure out how to create a nav bar in wordpress with image rollovers. Like on this site (divahound dot com) where the paw image shows up when you put your cursor on the nav bar item.

Can anyone share how this is done?

Thanks in advance!!!
 
Depends on how the nav bar is coded.

Code:
<style>
a.nav {
backgroundimage: url('/someimage.png')
}

a.nav:hover {
background-image: url('/hover.png')
}
</style>

<div class="menu">
  <a href="link" class="nav">text</a>
<a href="link" class="nav">text</a>
<a href="link" class="nav">text</a>
</div>

Essentially how it works. Just use the CSS pseudo-selector :hover on the link.


Or you can do transitions/fades with jQuery. Just look up fadein/fadeout/transition/show/hide. jQuery UI has advanced effects.
 
Back
Top