Hi all,
I want to remove the white spaces b/w the two images.
Means, i want to attach the images;
see this link;
http://rfcables.org/image.php
Now i want to remove the white gap between these images…
Thanking you for your help…
Hi all,
I want to remove the white spaces b/w the two images.
Means, i want to attach the images;
see this link;
http://rfcables.org/image.php
Now i want to remove the white gap between these images…
Thanking you for your help…
OK, question … what the heck is going on there?
Code fragments, rather than a well-formed HTML document.
Images inserted with Javascript rather than being put in the content.
A layout table with “width” spelled wrong.
If you want to put images in a line with no spaces between them, just create a <div> and fill it with the relevant <img> tags. No need for messing around with prehistoric layout tables or using Javascript to create the content.
It’s actually about your… heavy table layout
td {
padding:0;
}
Still, your 22.gif has a white part surrounding the drawing which will make the picture not fully “combine” with the cable_ex.gif.
You really need to uncomment/use the DTD at the top of your page. Quirks mode might fool you.
1 … 2 … 3! I see three images! Anyhow …
table {border-collapse: collapse;}
td {padding: 0;}
Thank you noonnope and ralph.m
Now i resolve the problem with your help.
Thanks again…