Hi, I want to increase and decrease website font size with buttons. how I can do this with wix code?

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 :slight_smile:
Or