Reputation: 196539
I have just encountered a strange situation. I have some basic html:
<table bgcolor="#FFFFFF" width="774">
<tr>
<td align=center valign="top">
<br />
<a href="../../images/backlarge.jpg" target="_blank">Click here to see larger view of scorecard</a><br />
<img src="../../images/back_01.jpg" border="0" /><br />
<img src="../../images/back_02.jpg" border="0" /><br />
<br />
<img src="../../images/front1.jpg" border="0" />
<img src="../../images/front2.jpg" border="0" />
<img src="../../images/front3.jpg" border="0" />
</td>
</tr>
</table>
and for some reason only 1/2 of the front2.jpg image shows up in the browser. When i view it from disk, the image is perfect but for some reason when i upload and view in a browser it only shows 1/2 the image:
Any suggestions?
Upvotes: 0
Views: 982
Reputation: 1
I have also suffered with the problem and have fixed it by adding the image to the images
folder, and then updating the src
of the <img />
to be; http://localhost:hostno/folder-where-the-website-stored/images/imagename.jpg
Upvotes: -1
Reputation: 1038
I downloaded image to disk and I only see 1/2 the image. It gives me gray in the other half. I would check the resolution of what you expect the image to be, checking I get W443 pixels by H192 Pixels. I would re-do the image. I doubt its a HTML problem.
Upvotes: 1
Reputation: 58931
Try uploading it again. There might have been some problems with the upload.
Upvotes: 3
Reputation: 20390
I would use FireBug as a starting point, to see if there are any CSS styles being applied to the image at runtime.
Other than that, I think it's hard to tell what the problem might be without viewing the live page ourselves.
Upvotes: 1