Hi,
You can change text’s font size by setting the html property of the element, use that in your button’s onClick event, for example:
export function button1_onClick(event, $w) {
$w('#text1').html = '<p><span style="font-size:80px">Your text</span></p>'
}
Good luck
Or