Hi Paolo,
Thanks for your response.

I achieved the updated result using the following code

function fademenutext() {
 $('#jsddm li a').hover(
        function () {
          $(this).animate({color:'green'}, {queue:false,duration:500});
        }, function () {
          $(this).animate({color:'white'}, {queue:false,duration:500});
        });
}

However, now also the submenu items change their text to green when hovered.
In the css file I also made sure that all the li ul a and li ul li a are set
as the default color.

Is there anything im doing wrong?

Also, is it possible to have the color (green on text 'Home') remain green
when going down the submenu, because it only stays green when its hovered
over the text. I would like it to remain green when 'Active'

Thanks



2009/8/27 Paolo Chiodi <chiod...@gmail.com>

>
> quite simple. instead of setting the color to green in the :active
> class, just use jquery.hover to set the color. Maybe when you hover
> the submenu you set yhe color, when exit the submenu set the color to
> default
>
> Paolo
>
> On Thu, Aug 27, 2009 at 2:52 PM, Karen Morales<karen.morale...@gmail.com>
> wrote:
> > Hi
> >
> > I would like someone to help me out with some issues I am having with the
> > Lava Lamp / SubMenu.
> >
> > This is what I have achieved so far http://karen.2kmegs.com, however
> what I
> > am trying to do now is that when I am hovering the 'Home' (or whichever
> has
> > a submenu) I would like the text to remain Green, because as it is now,
> once
> > I go on the submenu, it turns white again
> >
> > Also, is there like a way to fade the colour transitionally from like
> 'Home'
> > to 'HTML' rather than change it at once, so that once the LavaLamp image
> > goes on the hovered text it will sort of Fade to the green colour,
> because
> > as it is now, the text changes green before the Image hovers over the
> text,
> > and I dont want to increase the speed of the image moving
> >
> > I would gladly appreciate all the help given!
> >
> > Thanks
>

Reply via email to