Click to See Complete Forum and Search --> : slicing image so it loads faster


kasha
08-31-2006, 09:03 AM
hi, i'm doing this for the first time.

i sliced up a large image into 4 parts, as seen here:

http://xsystem.gr/stylebytes/geberit/

those line breaks continue to exist despite my adjusting the cellpadding, spacing and borders to "0".

would someone mind telling me who to get rid of them please? also ifyou have a better idea on slicing the image from what I did there I would appreciate your advice!

Kasha

slaughters
08-31-2006, 10:35 AM
First,try removing the line breaks after each image and set the TD width to the size of the images.

If that does not work, sometimes a carriage return is replaced with a space in HTML so by placing each <img> tag on a seperate line can place spaces between them. This will sometimes cause weird whitespace issues.

kasha
08-31-2006, 11:52 AM
First,try removing the line breaks after each image and set the TD width to the size of the images.

If that does not work, sometimes a carriage return is replaced with a space in HTML so by placing each <img> tag on a seperate line can place spaces between them. This will sometimes cause weird whitespace issues.

i tried removing the line breaks, and that fixed the problem in firefox, but created the same problem in Internet Explorer.

i think its a problem with the table. how can i get there to be absolutely no space between rows?

slaughters
08-31-2006, 02:41 PM
...how can i get there to be absolutely no space between rows?Since eveyone of those images are in just one row getting rid of the spaces between rows will do no good.

Everything lines up fine in IE for me. It's Firefox which shows spacing.

When I add align="left" to each of the IMG tags the white space between images goes away.

kasha
08-31-2006, 09:20 PM
thanks!