Announcement

Collapse
No announcement yet.

Missing images

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Missing images

    Hi

    I am trying to insert card logos using the following script

    <td>
    <img src="../visa.jpg" width="47" height="30">
    </td>

    they show up ok in the preview, but when I have uploaded to my site they cant be displayed?

    Any ideas

    www.sasadventuresports.com

    Steve

    #2
    Change it to:

    Code:
    <td>
    <img src="visa.jpg" width="47" height="30" alt="visa" /> 
    </td>
    and make sure the file is included into additional files for belt and braces approach.

    Or have it in a sub folder and reference it there, i.e. images/visa.jpg

    You are not telling it where it is properly at the moment.

    Comment


      #3
      Thanks

      Thanks guy's sorted

      just out of interest what did I do wrong?


      www.sasadventuresports.com

      Steve

      Comment


        #4
        This part:

        ../

        is telling it to jump up a level in the directory structure, it was basically being pointed to the wrong place. A bit like looking for the car in the garage, when it is sitting on the drive.

        Comment


          #5
          Thanks

          Thanks again guy's

          Comment

          Working...
          X