Text shadow option for hover / selected menu was available before in Wix Studio, and now, it's not?

I’m having trouble with applying text shadow for hover and selected pages in Menu Item.

I know it was available before because I have done it before. (I attached a screenshot but I am not even sure if the image attachments here are working properly.)

Now I am working on a new site, and the option is gone. It’s only available for regular state. Like… what’s the point? And I updated the menu in the old site to newer version and the option there is gone as well. And menu elements are not custom CSS supported?

So, why are we moving backward with Wix Studio???

1 Like

Have you tried with the custom classes?
Here is the exaple for menu item’s css classes
Menu CSS Classes | Velo

.anchor-menu__label {
  font-family: sans-serif;
  font-weight: 700;
  font-size: .8em;
  color: black;
box-shadow: 5px 5px 10px gray;

}

1 Like

I have tried CSS. This is what worked for me

.horizontal-menu__item:hover .horizontal-menu__item-label,

.horizontal-menu__item-label:hover {

text-shadow: 2px 2px 6px #FF671A;

}

2 Likes