Ulf,
Really nice work! It’s great having 2 fields available for display, and possibly different styling for each.
I found one little weird thing, and that was similar to the guy above… the link arrows would slide in when hovered, which seemed a bit weird.
I am nothing if not persistent, so I finally tracked it down. This line of CSS3 fancy/tricky stuff was doing it:
a, a:visited {
-moz-transition: all 0.1s ease-in-out;
-webkit-transition: all 0.1s ease-in-out;
transition: all 0.1s ease-in-out;
}
So I just made another block under that as follows:
#hoverNav a, #hoverNav a:visited {
-moz-transition: none;
-webkit-transition: none;
transition: none;
}
This code is in the sample child theme of the latest release of the Genesis framework (1.9.1), so if someone is using your plugin with that, this will come up.
Hope this helps you and others.
Thanks!! Dave