Jump to content

Recommended Posts

Hi,

 

I got a problem with my font-family - it jus uses a wrong font

 

now it looks like this: http://www.palido.at/wrongfont.png

 

but it should use this font: http://www.fontsquirrel.com/fonts/open-sans

 

in the global.css is the open-sans font set - so why does my shop takes the other font?

 

Link to my shop: http://www.palido.at/palidoshop/

 

 

Hope someone can help :/

 

Regards

Link to comment
Share on other sites

Okay, I got it.

You didn't include open sans, but I can see it as i have it installed.

go to google fonts, search for it. It will give you a link rel="stylesheet" like string. Copy it to header.tpl of your theme, BEFORE css files are included ;)

Link to comment
Share on other sites

Okay, I got it.

You didn't include open sans, but I can see it as i have it installed.

go to google fonts, search for it. It will give you a link rel="stylesheet" like string. Copy it to header.tpl of your theme, BEFORE css files are included ;)

 

it is already included:

<head>		
<title>{$meta_title|escape:'htmlall':'UTF-8'}</title>

{if isset($meta_description) AND $meta_description}		
<meta name="description" content="{$meta_description|escape:html:'UTF-8'}" />
{/if}

{if isset($meta_keywords) AND $meta_keywords}		
<meta name="keywords" content="{$meta_keywords|escape:html:'UTF-8'}" />
{/if}	
	
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />		
<meta http-equiv="content-language" content="{$meta_language}" />		
<meta name="generator" content="PrestaShop" />	
<meta name="viewport" content="width=device-width, initial-scale=1.0">	
<meta name="robots" content="{if isset($nobots)}no{/if}index,{if isset($nofollow) && $nofollow}no{/if}follow" />		
<link rel="icon" type="image/vnd.microsoft.icon" href="{$favicon_url}?{$img_update_time}" />		
<link rel="shortcut icon" type="image/x-icon" href="{$favicon_url}?{$img_update_time}" />	
{*
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'> 
*}
<script type="text/javascript">			
var baseDir = '{$content_dir}';			
var baseUri = '{$base_uri}';			
var static_token = '{$static_token}';			
var token = '{$token}';			
var priceDisplayPrecision = {$priceDisplayPrecision*$currency->decimals};			
var priceDisplayMethod = {$priceDisplay};			
var roundMode = {$roundMode};		
</script>	

{if isset($css_files)}	

{foreach from=$css_files key=css_uri item=media}
<link href="{$css_uri}" rel="stylesheet" type="text/css" media="{$media}" />	
{/foreach}{/if}{if isset($js_files)}
	
{foreach from=$js_files item=js_uri}
<script type="text/javascript" src="{$js_uri}"></script>	
{/foreach} 

{/if}		

{$HOOK_HEADER}	
</head>	
Link to comment
Share on other sites

×
×
  • Create New...