I'm trying to use the @font-face selector (because it finally works in most browsers... yay!), but am having a hard time.
I've tried importing it from a stylesheet using @import in HTML/CSS inserts. No go.
I've treid adding it directly (as opposed to importing) in the same location - HTMl Header: inserts :
Code:
<style type="text/css" media="all"> @import {url('<?php bloginfo('wpurl'); ?>/wp-content/fonts/stylesheet.css');} @font-face { font-family: 'TangerineRegular'; src: url('Tangerine_Regular.eot'); src: local('‚ò∫'), url('Tangerine_Regular.woff') format('woff'), url('Tangerine_Regular.ttf') format('truetype'), url('Tangerine_Regular.svg#webfonthdkJyIIt') format('svg'); font-weight: normal; font-style: normal; } </style>
In "Body styles", I've got just:
font-family: "TangerineRegular", arial, sans-serif;
and all text is defaulting to some sans-serif font, which tells me it is reading that information, at least, but clearly not understanding it so it's going to default.
Clear as mud?
The point is, this should be working (I would think?) but it's not. Has anyone found a solution to this yet? It doesn't make any sense, unless the programming is, perhaps stripping out the "@" symbol?
Thanks.
P.S. the stie can be seen with the theme I'm testing here:
http://brownstudy.littlesumrallacade...e=atahualpa353
Thanks again!