vote up 1 vote down star

I'm working my way through a Django book and I just noticed something strange the other day. The CSS code works just fine in Safari 3 (on Mac and Windows) but not in Firefox 3 (Windows). I'm running the django dev web server and I can see the css file being called in the console when in Safari but not when using Firefox. Any idea on what might be happening?

flag

80% accept rate
Have you tried to call the CSS file directly by URL on Firefox? – rogeriopvl Jun 17 at 15:50
do you have a code sample or url? – scunliffe Jun 17 at 16:05
It could be related to browser caching, but that's a stretch because I think Safari should also cache the same way as Firefox. We just don't know enough information to really provide a good answer. – Van Gale Jun 17 at 17:36
When I visit 127.0.0.1:8000/site_media/style.css I do see the css file displayed. When I use the View CSS option in the Firefox Developers Toolbar, it's obviously blank. – kfordham281 Jun 17 at 18:44
I thought about browser caching before but I've cleared all private data in Ff and still no dice. I should note that IE7 also does not show CSS. Google Chrome however does (which also used Webkit). – kfordham281 Jun 17 at 18:53
show 1 more comment

2 Answers

vote up 0 vote down

Are you missing or do you have an extra slash in any of your paths?

E.g.

admin.site.root_path = 'admin'

Instead of

admin.site.root_path = '/admin/'

..in your urls.py

Or something similar in your settings.py?

link|flag
I've left both MEDIA_ROOT and MEDIA_URL at their defaults (which is blank). The info related to CSS in urls.py is posted in my last comment above. I can't seem to figure out how to format the code in these comments. Or can you even do that? Sorry, first time poster here. – kfordham281 Jun 18 at 2:27
vote up 0 vote down check

I am an idiot....

This was the link to my css file in my head :

<link rel="sytlesheet" href="/site_media/style.css" type="text/css" />

Umm... that's not how you spell "stylesheet"! Interesting that Webkit (Chrome and Safari) displayed the css even with the misspelling. I figured it out when I went to the next chapter in the book and the jquery examples were working and the jquery.js file was in the same directory. Something just wasn't adding up.

Sorry for the horrible question!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.