|
Have you tried adjusting the margin using CSS?
|
|
Expert:
|
jgivoni
|
|
Date:
|
May 12, 2006
|
|
Time:
|
17:10
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
I'm not using CSS, just normal HTML.
|
|
Expert:
|
sbjc23
|
|
Date:
|
May 12, 2006
|
|
Time:
|
17:33
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
Do you have a link to a page showing the problem? Have you tried setting border=0 ?
|
|
Expert:
|
tim
|
|
Date:
|
May 14, 2006
|
|
Time:
|
05:19
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
I dont have a link showing it, I am developing it off of my computer's drive. Have you heard of this problem before? The border is already set to zero.
|
|
Expert:
|
sbjc23
|
|
Date:
|
May 15, 2006
|
|
Time:
|
09:54
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
Can you post the html snippet surronding the images and the content below? Make sure the snippet demonstrates the same problem when in a page of it's own.
|
|
Expert:
|
tim
|
|
Date:
|
May 17, 2006
|
|
Time:
|
02:23
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
This is a freaking great question, I've always had problems with this one.
|
|
Expert:
|
john2
|
|
Date:
|
May 22, 2006
|
|
Time:
|
10:14
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
Even though you don't use stylesheets, it might be the only way to avoid the problem.
You don't have to create a complete stylesheet - the CSS code can just be added to your html document.
Try putting this within your <head></head> section:
<style type="text/css">
img { margin:0; padding:0; border:0;}
</style>
|
|
Expert:
|
jgivoni
|
|
Date:
|
May 22, 2006
|
|
Time:
|
20:01
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
There is an easy fix to this with simple HTML
If you have a table like this:
<table>
<td>
<img src-"">
</td>
</table>
It will have the space in interenet explorer. All you have to do is simply move the <td> tag up behind the <img> tag and it will solve the problem. I'm sure there are other fixes but this is the best one.
Example:
<table>
<td>
<img src-""></td>
</table>
Hope this does the trick for you.
|
|
Expert:
|
john2
|
|
Date:
|
May 25, 2006
|
|
Time:
|
10:28
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
Are you serious? That simple?
<table>
<td>
<img src-""></td>
</table>
|
|
Expert:
|
dbrons
|
|
Date:
|
Jun 12, 2006
|
|
Time:
|
18:10
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
I would use CSS if anyone reads this from this point on. Tables are out the door and it's just a matter of time before they disappear altogether.
|
|
Expert:
|
James1
|
|
Date:
|
Jul 03, 2006
|
|
Time:
|
11:12
|
|
|
|
Votes: Good (0) | Bad (0) Login to rate this answer
|
|
|
|
|
|
|
This question has been answered, and points have been rewarded to the following experts:
You're welcome however to comment or give additional information or if you wish, you have the ability to write an Answer Summary for this question by clicking on the "Answer Summaries" Tab.
|
|