Mega menu dropdown icon next to text

Does Wix Studio not have an option to add an arrow icon next to text that has a mega menus?

1 Like

Sorry but I also have same problem I tried even velo with the given code but it didn’t worked.

Code:

//Menu
$w.onReady(function () {
    $w('#res-btn').onClick(() => {
        $w('#dropdownMenuRes').show(); // Show the element
		console.log("Executed");
    });
});
$w.onReady(function () {
    // Show the element with a "fade" effect on button hover
    $w("#res-btn").onMouseIn(() => {
        $w("#dropdownMenuRes").show("fade", { duration: 400 });
		console.log("Executed");
    });

    // Optionally hide the element when the mouse leaves the button
    $w("#res-btn").onMouseOut(() => {
        $w("#dropdownMenuRes").hide("fade", { duration: 400 });
		console.log("Executed");
    });
});