grouping buttons

I would like to use 2 fonts And 3 colours at 1 button. So When you Come on the page you only see the black “A” when you click on the A I would like that the art direction in blue appears and the A also changes in this colour blue

Please share code or describe more details.

I would like to use 2 fonts And 3 colours at 1 button. So When you Come on the page you only see the black “A” when you click on the A I would like that the art direction in blue appears and the A also changes in this colour blue

Ok
Hide the “art direction” onload. Add onClick event to the black A and then use $w(“#id of art direction element”).show(“FadeIn”); to show the the art direction element. Then if the black A is a button use the style API as
$w(" #i d of black A").style.color = “rgba(255,0,0,0.5)”; and change the color to your color of desire.

If it is a text element use the stule as
$w(“#textElement”).html = “A”; and ofcourse you might have to add the size and so.

Thank you so much @Andreas! Do you know the code to not have it ‘faded in’ but just showing as you scroll over it with the mouse? So when your on the A it shows quickly but if you move over it goes away again? Now the art direction line stays on view…