if i add this to the code, save, close the banner, then open it again, THEN the subset attribute just disappears!!
<link href="https://fonts.googleapis.com/css?subset=arabic,latin&family=Scheherazade:400,700|Lato:400,300,700" rel="stylesheet" type="text/css">
changes to ===>
<link href="https://fonts.googleapis.com/css?family=Scheherazade:400,700|Lato:400,300,700" rel="stylesheet" type="text/css">
looks like a bug need to be fixed !
Some of the fonts in the Google Font Directory support multiple scripts (like Latin, Cyrillic, and Greek for example). In order to specify which subsets should be downloaded the subset parameter should be appended to the URL.
. . . Please note that if a client browser supports unicode-range (http://caniuse.com/#feat=font-unicode-range) the subset parameter is ignored; the browser will select from the subsets supported by the font to get what it needs to render the text.
thx