Changing the font style of button in different languages

Hey guys

I have a website that have the English and Arabic languages and I want to change font-style of a button in Arabic language but when I change it it change the both of languages and when I preview my live website it seems unprofessional and ridiculous

Can you tell me how to change font-style of buttons in different languages

Hey.

You can use the currentLanguage to get site’s current language and set button style accordingly.
If(wixWindow.multilingual.currentLanguage === “en”){
//Display this font
}
else {
//
}

Good luck!