Is there a way to create a hover effect (i.e. turn text color to red) for the menu items in the menu on the main page? I’m having trouble because the menu is linked to an animation that changes the background color and text color of the menu. If I change the text color for the menu item with “hover” activated in the style selector, it simply doesn’t show (I think because the animation overwrites it?).
Could you help me solving this issue?
I can see 2 actions for .nav-link.default class and both set the text color to black, since its black by default anyway, could you remove those 2 actions from the animation? That seems to render the hover effect perfectly as you need and removes the redundant actions.
But in case you need those text color actions in the animation and plan to have some other color than black in future, you could setup an interaction on the nav links specifically and trigger it on Mouse hover and set the text color to Brick red. That should work for your use-case too.
To keep it simple, you could take the first approach. Hope this helps.