Click to See Complete Forum and Search --> : Space between photos is needed, but not working


design
11-18-2004, 01:07 AM
NONE

BonRouge
11-18-2004, 04:51 AM
Actually, there's no space between the pics in Firefox...

Add something like this to your css and you should be OK...

img {padding:5px;}

Cheers.

WillTheGeek
11-21-2004, 01:07 PM
Your source code shows that you are using tables for layout. The table tag shows that you have specified cell padding = 2 and cell spacing = 2. Change these to = 0 and the pics should be touching each other.

However you have specified width = 100%. This will cause the pictures to be spaced equally across the window, leaving a wide margin between photos. Specify a fixed width if you want them together.

Regards,

Will