On 23-8-2012 3:41, Gregory Strydom wrote: > Could anyone perhaps tell me where i could find the layout.css and > global.css for the base admin site? > > Ive tried looking through C:/Python26/site-packages/django but cant seem to > find anything.
You shouldn't edit anything there - it will be lost when you upgrade. The base procedure is described here: <https://docs.djangoproject.com/en/1.4/intro/tutorial02/#customize-the-admin-look-and-feel> For the css and js bits, read these top to bottom: <https://docs.djangoproject.com/en/1.4/howto/static-files/> <https://docs.djangoproject.com/en/1.4/ref/contrib/staticfiles/> The short version is to copy the files to the appropriate location whether it be the TEMPLATE_DIRS or STATIC_ROOT and edit those files. The long version is that you should thoroughly understand how static files work - it's a recurring issue on the list and it's one of those things that has to sink in and then you get it. If you don't get it, then lots of time and energy is wasted on "trying if this works". -- Melvyn Sopacua -- 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 django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.