Molly wrote: > How would I call the static file in my browser?? By typing in the url to the static file directly in the address bar.
For example if your server is example.com, root of django app is myapp, and images are in img dir, and image is named myjp.jpg the url would be http:://example.com/myapp/media/img/myjpg.jpg From your description it sounds like the css is not being found. I'd look in the HTML source(as seen by browser, with firefox ctrl-u, with IE install Firefox) find line(s) that include css. They probably look something like this. <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.3.1/build/calendar/assets/calendar.css" /> then see if you access(copy it to address bar, hit return) http://yui.yahooapis.com/2.3.1/build/calendar/assets/calendar.css Either the url(s) in your templates point to wrong place, or the urls/document_roots in urlpatterns are wrong, or something else is wrong ;) btw hard coding a path "C:\dev\incidents\admin_media" in your urlpatterns is probably a bad thing to do. As whoever uses your app/where ever you deploy it for production is unlikely to install the app in the same place you do on your dev machine. -- Norman J. Harman Jr. Senior Web Specialist, Austin American-Statesman ___________________________________________________________________________ You've got fun! Check out Austin360.com for all the entertainment info you need to live it up in the big city! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---