Redirect issue

In your code in the FAQ and Info pages you have this:

      background-image: url('images/trash\ at\ dw.JPG');

As compared to Home’s:

      background-image: url('images/trash\ at\ dw.jpg');

The difference may not appear at first, as it is a subtle one (I myself used a tool to find it). In the code for the FAQ and Info pages you have the .jpg extension of the images capitalized as .JPG, which is the cause of this issue.

This is also explained in the article linked above:

Replacing the .JPG with .jpg should help.

4 Likes