• Resolved thaik

    (@thaik)


    Please help! I’m building a mock-up website and everything was working fine. CSS was loading in my main browser, Chrome, totally ok. Two days later I come back to check and all of a sudden CSS won’t load. Firefox and IE won’t load either, except for compatibility view. The only browser that seems to load the CSS is Safari!

    I don’t think I touched/changed anything and it was working fine up until today. So I’m confused. And I’m still a newb at this sort of stuff, so any help would be greatly appreciated!

    The mock-up website is located here: http://thaikim.com/weldonvalley/

    and I have cleared my cache on my mac and have used a friend’s pc to look at too.

    Thank you for your time!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Look at your child theme’s CSS file. On the 7th line, you’re missing the ending parenthesis.
    This:

    @import url("../responsive/style.css";

    Should be this:

    @import url("../responsive/style.css");

    Thread Starter thaik

    (@thaik)

    oh. my. GOD

    thank you thank you thank you thank you thank you THANK YOU

    I feel like such an idiot. I knew it was going to be something obvious and simple like that. Have no idea how the parenthesis disappeared…. and I wonder why Safari ignored my mistake?

    Again, many thanks!

    You’re welcome! Usually, when something goes really screwy with the appearance of a site, I try validating the HTML and the CSS if I can’t find anything right away. The validator is really good at picking out things like missing closing </div> tags that can really make a site look haywired.

    I didn’t see any major problems with the way your HTML validated, so I checked your CSS file, and the error popped up right away.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘CSS not loading in Chrome or Firefox’ is closed to new replies.