You can create your own image directories and call them whatever you like BUT you need to remember a couple of things.
Let's say you have image01.jpg and you want to store it in /myproducts. /myproducts has to live in /images, so it should be /images/myproducts.
Now, you can have 3 image sizes: small, medium, large. image01.jpg is the small one. The next size up would be image01_MED.jpg (note the change in case! It is case sensitive). You should put that one in /images/medium/myproducts. The largest image would be image01_LRG.jpg and should be in /images/large/myproducts.
What you'd end up with would be:
/images/myproducts/image01.jpg
/images/medium/myproducts/image01_MED.jpg
/images/large/myproducts/image01_LRG.jpg
HTH!


Reply With Quote
