Ciao a tutti, sto usando un layout WP che con Safari/Chrome non da problemi, mentre in IE i font corretti non vengono visualizzati
Nel CSS ho
codice:
body { line-height: 18px; font-family: Georgia, serif; font-size: 16px; color: #716851; background-color:#696969; overflow-x: hidden; }
@font-face {
font-family: "English111 Vivace BT";
src: url("English111_Vivace_BT.eot") /* EOT file for IE */
}
@font-face {
font-family: "English111 Vivace BT";
src: url("English111VivaceBT.ttf") /* TTF file for CSS3 browsers */
}
@font-face {
font-family: "Myriad Pro Bold";
src: url("myriadproboldcond.eot") /* EOT file for IE */
}
@font-face {
font-family: "Myriad Pro Bold";
src: url("myriadproboldcond.ttf") /* TTF file for CSS3 browsers */
}
@font-face {
font-family: "Myriad Pro cond";
src: url("myriadprocond.eot") /* EOT file for IE */
}
@font-face {
font-family: "Myriad Pro cond";
src: url("myriadprocond.ttf") /* TTF file for CSS3 browsers */
}
a { text-decoration: none; color: #5a863c; }
a:hover { text-decoration: underline; }
.clear { clear: both; }
.ui-tabs-hide { display: none; }
br.clear { margin: 0px; padding: 0px; }
...
I files ovviamente sono presenti e se cancello/rinomino i files .ttf ottengo lo stesso risultato di IE (ovvero font non assegnato), quindi il path e la struttura dovrebbe essere OK.
Dove sta il problema?
Grazie