thanks for your reply, but...
if i see into the folder MEDIA/TEMPLATES/SITE/TP_TRAVEL/PARAMS into the json file for the configuration i have this name for the font...
Code:
{"desktop":"em","tablet":"em","mobile":"em"},"text_transform":"none"},"h1_typography":"custom","h1_typography_options":{"font_face":"Exo+2:100,200,300,400,500,600,700,800,900,100i,200i,300i,400i,500i,600i,700i,800i,900i","alt_font_face":"Arial, Helvetica, sans-serif","font_weight":"300","font_size":
and this is created directly from the template's configuration page.
if i see into the cache file i have (for example):
Code:
.body{font-weight:400;text-transform:none;font-size:16px;letter-spacing:0em;line-height:1.7em;font-family:"'Exo 2'", Arial, Helvetica, sans-serif;}
if i edit this file, leaving the semicolon, the result is:
.
Code:
body{font-weight:400;text-transform:none;font-size:16px;letter-spacing:0em;line-height:1.7em;font-family:"Exo 2", Arial, Helvetica, sans-serif;}
and all works fine..
but this is only a workaround, and i don't wnat edit every time the cache file...
may be there's something strange when cache is created?
for me is not the right solution install all the font into a folder on the server... i prefer it's come directly from google fort server...
thanks.