there a option to change color for tab with wix code?
i want in the tab section downscroll when the client click on a tab the color tab will change also.
the link is here:
https://info767043.wixsite.com/mysite
Hi,
I’m not sure that I fully understand what you were referring.
Can you please send us a screenshot so that we can better understand what you would like to achieve?
Thanks,
Tal.
the point is that when the client click of one of the 3 tabs the text will be change the color like the first tab “what happens”
Hi Dor,
You can create an onClick event and there you can change the elements style using HTML, the code should look like this :
export function text1_onClick(event) {
$w("#text1").html = `<h1 style = "color:red"> ${$w("#text1").text}</h1>`;
}
Good luck