Jump to content

Local Business Site - Complete - Take A Look


Krewe

Recommended Posts

  • 3 weeks later...

Hey, nice job overall. On all pages I would go through and try and resolve all JS errors and HTML validation errors. I noticed when browsing around with the Chrome console open and playing around with things,http://www.surfshackyogurt.com/flavors.php has broken images paths i would definitely advocate for some basic error handling on the contact form. Submitting the form with no data should ideally do anything but spew out warnings that contain path information on your server.http://www.surfshackyogurt.com/sendmessage.php

Link to comment
Share on other sites

Hey, nice job overall. On all pages I would go through and try and resolve all JS errors and HTML validation errors. I noticed when browsing around with the Chrome console open and playing around with things,http://www.surfshack...com/flavors.php has broken images paths i would definitely advocate for some basic error handling on the contact form. Submitting the form with no data should ideally do anything but spew out warnings that contain path information on your server.http://www.surfshack...sendmessage.php
Thanks for checking that for me.I don't know what happened. I have something set in place to make sure you can't send empty info. The broken image paths I don't know what to say or do because there are only four images on that page.1) Up Arrow2) Down Arrow3) Logo4) BackgroundThe two arrows switch by Js.What is it saying is broken? Thanks.~Krewe
Link to comment
Share on other sites

Thanks scientist. Can you tell me which img links are broken? There is only my logo, the two arrows and the background on that page.The up and down arrows are switched by JS. And the form has a system set in place but something is wrong... Obviously.The contact form is now fixed! ~Krewe

Link to comment
Share on other sites

  • 5 weeks later...
  • 2 weeks later...
Can you tell me which img links are broken?
I noticed when browsing around with the Chrome console open and playing around with things,http://www.surfshack...com/flavors.php has broken images paths
always check your console
Link to comment
Share on other sites

always check your console
I understand that, but I don't understand how an image link can be broken on a page when everything loads correctly.
Link to comment
Share on other sites

  • 2 weeks later...
I understand that, but I don't understand how an image link can be broken on a page when everything loads correctly.
because the image link is incorrect? Resources are independent of each other. Just because the others load doesn't mean they all will. Anyway, if you look in the console, it says this is not found
Failed to load resource: the server responded with a status of 404 (Not Found) http://www.surfshack...images/line.png

Also, you have an error on line 56.

Link to comment
Share on other sites

because the image link is incorrect? Resources are independent of each other. Just because the others load doesn't mean they all will.
I understand that, but on the flavors page everything on that page is generated by the php. So if one is broken, I don't understand how all of them aren't broken.
Link to comment
Share on other sites

All I'm saying is the image is not there. Regardless of how the path is generated, or what other images are being used on the page, that specific image is not at that specified location. have you even tried looking in the images folder on your server?http://www.surfshackyogurt.com/images/line.png

Link to comment
Share on other sites

This is the first line of 30 listing this image at src="images/line.png"

line 172, col27                <div class="panel1" align="left">                    <img src="images/line.png" width="600px" height="1px" alt="linebreak" /><br />                    <table>                    <tr>                    <td colspan="3"><strong><u>Serving Size</u></strong> - 83g/4oz</td>

which should be src="/_images/line.png"

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...