In style.css has these code:

@font-face {
  font-family: 'Steinem';
  src: url('fonts/steinem.eot'); /* IE9 Compat Modes */
  src: url('fonts/steinem.eot?iefix') format('eot'), /* IE6-IE8 */
       url('fonts/steinem.woff') format('woff'), /* Modern Browsers */
       url('fonts/steinem.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('fonts/steinem.svg#steinem') format('svg'); /* Legacy iOS */
}

But when i download font files from http://www.urbanfonts.com/fonts/Steinem.htm there are only these files:
STEINBI_.ttf
STEINEM.ttf
STEINEM_.ttf
STEINEMB.ttf
STEINEMI.ttf
STEINEMU.ttf

And theme is full mess.
How to fix this problem?

Comments

dmgange’s picture

I've loaded the recommended fonts into sites/all/themes/vert/fonts/ and they are not recognized/read by the theme. The web pages look the same whether there are fonts in the font directory or not.

dmgange’s picture

I'm guessing that there is a issue with the url variable in the styles.css file, and that the theme is failing over to a generic sans serif font.

dmgange’s picture

This comment from the API $base_path documentation may be relevant:

Posted by yookoala on March 9, 2012 at 7:58am new
Since both url() and l() are affected by i18n site url prefix settings, you cannot get correct path to a file with url('filepath'). You should use $base_path instead:

     // an example to retrieve the url to a png file in module
     echo $base_url . '/' . drupal_get_path('module', 'custom') . '/images/foobar.png';
     
emmajane’s picture

Status: Active » Fixed

This has been fixed in the 1.2 release. Please download the new version of the theme and follow the instructions that are now included. If you are still having problems after upgrading to the 1.2 release, please let me know in this issue.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.