Vgta Posted November 8, 2011 Share Posted November 8, 2011 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 More sharing options...
justinl Posted November 10, 2011 Share Posted November 10, 2011 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 More sharing options...
Recommended Posts