Page 1 of 1

Images for templates

Posted: Wed Dec 06, 2006 5:50 am
by Hockey
Is there a standard location outside the "uploads" directory where template images or files should be stored?

I'm creating my template from scratch and right now have a background image which in CSS looks like:

Code: Select all

url('uploads/bkgnd.gif')
This feels awkward for me mixing my template images in with potential other images...

Am I on the right track or is there a better method?

Re: Images for templates

Posted: Wed Dec 06, 2006 6:28 am
by cyberman
There's no such an system default - you can do what you want :). But think it would be better you are using this

Code: Select all

url('uploads/images/bkgnd.gif')
or at the best  ;D

Code: Select all

url('uploads/images/your_template_name/bkgnd.gif')