Hacker News new | ask | show | jobs
by Kronopath 4107 days ago
The images are all broken because they're using relative paths when they should be using absolute paths. Example:

    <img src="img/moi/font-awesome-fa-users.png" alt="FontAwesome users icon">
This should be:

    <img src="/img/moi/font-awesome-fa-users.png" alt="FontAwesome users icon">
Note the slash in the src field. The image exists at the absolute path of https://webmaker.org/img/moi/font-awesome-fa-users.png but not at the relative path of https://webmaker.org/localweb/img/moi/font-awesome-fa-users....

All the images are like this. Whoever made this site kind of dropped the ball.