Need urgent help please with small something

I made this simple userscript for my browser to change the displayed Arabic font to Tahoma.

@namespace url(http://www.w3.org/1999/xhtml);
/* applies font to all generic HTML tags */
* {
font-family: Tahoma, Geneva, sans-serif !important;
}

It works as intended but there's a bug (I don't know where) that messes the text layout of some google pages and glyphs as seen in this screenshot https://i.imgur.com/xqjmxgw.png I want to know how to make this code affect the Arabic font only and not anything else? Thanks.

Sign In or Register to comment.