Image showing problem (again)

http://lion-craft.epizy.com/pages/join-why.html

yes images are not showing

I have typed the correct path and placed in correct place but the image still don’t load.

You’re not getting the image from pages/files/images/sleep-mc.png path right? you should put a / before image source. :slight_smile:

Use

<img src="/files/images/sleep-mc.png" alt="cute mc image" width="1090" height="600">

instead of

<img src="files/images/sleep-mc.png" alt="cute mc image" width="1090" height="600">
5 Likes

but why other images are working without that slash?

Because they aren’t in pages folder or in any folder else. The / is used to fetch images or other files from root instead of the current folder.

3 Likes

Took me 2 mins to understand that all pages and main page wasn’t in folder thank you :grin:

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.