Jump to content

ps_pagenotfound with lot of register of @font-face


Recommended Posts

In the table ps_pagenotfound.

I find a lot of records about /catalogo/themes/audiomusica/fonts/AlternateGothicNo2BT-Regular.ttf)%20format(%22truetype%22 page not found

 

This is in the css file

@font-face{

font-family: AlternateGothic;

src: url(../fonts/AlternateGothicNo2BT-Regular.eot) ;

src: url(../fonts/AlternateGothicNo2BT-Regular.ttf) format("truetype");

}

 

How I can solver this problem

Link to comment
Share on other sites

I'm using custom fonts and I use Font Squirrel Generator which outputs a bit more robust css for custom fonts as well as generating a handful of different web font formats for multiple browser support. This might solve your problem. http://www.fontsquirrel.com/fontface/generator

 

Here is an example of the CSS block for a custom font:

 

 

@font-face {

font-family: 'MyFont700';

src: url('../font/MyFont_700-webfont.eot');

src: url('../font/MyFont_700-webfont.eot?#iefix') format('embedded-opentype'),

url('../font/MyFont_700-webfont.woff') format('woff'),

url('../font/MyFont_700-webfont.ttf') format('truetype'),

url('../font/MyFont_700-webfont.svg#MyFont700') format('svg');

font-weight: normal;

font-style: normal;

 

}

Link to comment
Share on other sites

×
×
  • Create New...