Select an individual menu item to apply different styling

Hi,

I am trying to select one of the menu items on a horizontal nav menu to apply a different font-weight to it. I selected the menu with the id. A console log of the menu shows an “items” property that contains an array of each menu item. However, it doesn’t look like there is any way to add alternate styling to them. Is there any way add styling to just one of the menu items, as opposed to the entire menu with the editor?

I did look through the docs/forum and couldn’t find anything. This is my first time working with Wix, so apologies if I’ve missed something. Thanks for any help in advance!

https://www.wix.com/corvid/reference/$w/menu

Thanks for the link russian-dima. I came across this before posting & looked through it again. I don’t see anything that would allow me to select a single menu link for the purposes of adding custom styling. Am I missing something?

No, you do not miss anything. That’s what i wanted to show. I also see no options :grin:

@russian-dima Haha alright, thanks for clarifying :v:t3:

If you’re able to see the array of each menu items, are you able to access them through bracket notation?

const menu = $w("#myMenu")

console.log(menu[0])

Or something to this effect