Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter borgauf

    (@borgauf)

    I’ve put the cmunrm.* files in literally every directory up and down my server. The problem, I’m still rather sure, lies in the fact that WP is creating a virtual directory based on the blog title e.g., “the-ceiling” and there are no cmunrm.* files in this virtual directory. Again, Chrome Inspect reports that it is looking in http://147pm.info/blog/the-ceiling/… for the font files and there is no real such place.

    Thread Starter borgauf

    (@borgauf)

    This still isn’t working (same error) even though you can put in http://147pm.info/blog/cmunrm.eot and pull down the font. I now realize the “the-ceiling” is just the title as some sort of pseudo-directory.

    
    @font-face {font-family: "CMU Serif Roman";
      src: url("http://147pm.info/blog/cmunrm.eot"); /* IE9*/
      src: url("http://147pm.info/blog/cmunrm.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
      url("http://147pm.info/blog/cmunrm.woff2") format("woff2"), /* chrome、firefox */
      url("http://147pm.info/blog/cmunrm.woff") format("woff"), /* chrome、firefox */
      url("http://147pm.info/blog/cmunrm.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
      url("http://147pm.info/blog/cmunrm.svg#CMU Serif Roman") format("svg"); /* iOS 4.1- */
    }
    
    • This reply was modified 8 years, 11 months ago by Jose Castaneda. Reason: added backticks for code
    Thread Starter borgauf

    (@borgauf)

    Deactivating plugins has no effect. Here’s my styles.css:

    
    /*                                                                                                                                                                                                    
    Theme Name:     2017147pm                                                                                                                                                                             
    Description:    Child Theme of 2017                                                                                                                                                                   
    Author:         borgauf@gmail.com                                                                                                                                                                     
    Template:       twentyseventeen                                                                                                                                                                       
                                                                                                                                                                                                          
    (optional values you can add: Theme URI, Author URI, Version, License, License URI, Tags, Text Domain)                                                                                                
    */
    
    @font-face {font-family: "CMU Serif Roman";
      src: url("cmunrm.eot"); /* IE9*/
      src: url("cmunrm.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
      url("cmunrm.woff2") format("woff2"), /* chrome、firefox */
      url("cmunrm.woff") format("woff"), /* chrome、firefox */
      url("cmunrm.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
      url("cmunrm.svg#CMU Serif Roman") format("svg"); /* iOS 4.1- */
    }
    
    body,
    textarea,
    html {
            font-family: "CMU Serif Roman", Georgia, serif;
            line-height: 1.15;
            -ms-text-size-adjust: 100%;
            -webkit-text-size-adjust: 100%;
    }
    
    • This reply was modified 8 years, 11 months ago by Jose Castaneda. Reason: added backticks
    Thread Starter borgauf

    (@borgauf)

    Thanks, that worked.

Viewing 4 replies - 1 through 4 (of 4 total)