I’m working on a project that uses Drupal and I wanted to add a few images to the home page.
First I created the folders files/images under the root directory. I then created the home page (Create Content->Page). When adding images to the home page, the file location is relative to the root directory:
<img src="files/images/flash1.jpg" width="168" height="112" class="imageFloatLeft"> |
But when I created another Drupal page (a page other than the home page), the relative path for the image is different:
<img src="../files/images/flash1.jpg" width="168" height="112" class="imageFloatLeft"> |
And when I created a page using Drupal’s Panels Module, the relative path for the image is once again relative to the root directory:
<img src="files/images/flash1.jpg" width="168" height="112" class="imageFloatLeft"> |
Adding content to Drupal seems to be fairly straightforward, but I did struggle a bit as I tried to figure out the relative paths of images/files so I hope this helps anyone else who may be struggling.


