Hello,
Please take a look at the attached screenshot. I want to be able to hover over the black font to have the blue/purple lowercase text show in its place. I am having trouble with the Javascript to make this work. The black buttons are labeled #button4 (WORK), #button3 (ABOUT), #button2 (CONTACT) and the lowercase blue/purple buttons are #button5 (work), #button6 (about), and #button7 (contact). Please note this is being built in the header. Can someone please help? Much appreciated!
Hi,
If you want to customize the menu on hovered, you can use buttons instead menu. Attach them to the header and create onMouseIn event and there change the HTML of the text to the font and text you want.
This code is example for changing text:
$w("#text1").html = `<h1 style = "color:red"> ${$w("text2").text}</h1>`;
Good luck
Anyone? Still trying to figure this one out