We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 35597
    • 2 Posts
    Okay, this is truly bizarre, so forgive me if this is in the wrong place; I figured all you people who are smarter than I am would have some insight. smiley I just launched my latest Revo project:

    http://www.carnivalesquefilms.com

    Cool, right? So just to make sure everything's hunky-dory with the .htaccess, I go to:

    http://carnivalesquefilms.com

    Everything looks fine, except my fonts are falling back to the system fonts, and not the ones specified in the CSS. Even weirder, this is only happening in FF10. Chrome and IE8 (I know, right?) work just fine.

    I'd also like to set the base URL to just plain <carnivalesquefilms.com> eventually, but let's not get ahead of ourselves. I've attached the .htaccess (which isn't too far off the default), and here's the offending CSS:

    @font-face {
    	font-family: 'Droid Sans';
    	src: url('/assets/fonts/droidsans-regular-webfont.eot');
    	src: url('/assets/fonts/droidsans-regular-webfont.eot?#iefix') format('embedded-opentype'),
    		url('/assets/fonts/droidsans-regular-webfont.woff') format('woff'),
    		url('/assets/fonts/droidsans-regular-webfont.ttf') format('truetype'),
    		url('/assets/fonts/droidsans-regular-webfont.svg#DroidSansRegular') format('svg');
    	font-style: normal;
    	font-weight: normal;
    }
    
    @font-face {
    	font-family: 'Droid Sans';
    	src: url('/assets/fonts/droidsans-bold-webfont.eot');
    	src: url('/assets/fonts/droidsans-bold-webfont.eot?#iefix') format('embedded-opentype'),
    		url('/assets/fonts/droidsans-bold-webfont.woff') format('woff'),
    		url('/assets/fonts/droidsans-bold-webfont.ttf') format('truetype'),
    		url('/assets/fonts/droidsans-bold-webfont.svg#DroidSansBold') format('svg');
    	font-style: normal;
    	font-weight: bold;
    }
    


    Any ideas? I got nothin'. Thanks in advance!
      • 32316
      • 387 Posts
      going to carnivalesquefilms.com in Safari, Chrome and FF all look the same on my computer (OX 10.7) - with the droid sans font being displayed - I did not fire up IE8 (or 7 or 9)

      trying to go to www.carnivalesquefilms.com did not work - can't find server.

      the latter would probably be fixed by uncommenting the three lines after the line
      # Rewrite www.domain.com -> domain.com
      in your .htaccess.txt
        • 35597
        • 2 Posts
        Okay, great! Not sure why the fonts got all weird; but now that it redirects, we're in good shape and nobody is the wiser. Thanks!

        However, it may have caused another problem: I have another domain (girlmodelthemovie.com) pointing to a directory on carnivalesquefilms.com. (Not the way *I* would have set it up, but there you go.)

        http://www.carnivalesquefilms.com/girlmodelthemovie/manager now redirects to http://girlmodelthemovie.com/manager, which makes sense; but when I try to log in to the manager, it just spits me back to the login page again. After flipping through a few threads here, I've gone back and manually deleted the files from /core/cache and /core/cache/mgr, as well as cleared out all my temporary browser data, but the problem persists. Any ideas?

        Thanks again for all your help!