Hi, I am having trouble with the image path in my custom pages. I want to add an image to define_about_us.php. After I insert the image, it doesn't appear locally, only the alt tag does. Is there some global setting?
Thanks!
Hi, I am having trouble with the image path in my custom pages. I want to add an image to define_about_us.php. After I insert the image, it doesn't appear locally, only the alt tag does. Is there some global setting?
Thanks!
How are you inserting the image? If an editor browse function isn't doing it right, try uploading the image straight to your /images/ folder, or your /includes/templates/your_template/images/ folder, and use the <img> code directly with the file location specified.
hmm.
It's not working for me locally. Here is my code within the includes/languages/english/html_includes/collegePrep/define_main_page.php: <img src="../../../../templates/collegePrep/images/maximize_scores.jpg" alt="home image" width="940" height="337" />
What am I doing wrong?! Thanks.
this seems to work: <img src="includes/templates/templatename/images/image.jpg" />
Thanks.
Yep, that's the recommended method. Sorry I missed you before. The relative URL will work even if you move the site to a different folder or server, whereas an absolute URL (http://www... ) would only work from one location.