On 8/31/07, Eridius <[EMAIL PROTECTED]> wrote: > > > > it seems to be the image cuase when i put image under one there is a > space > on the bottom, what the hell could be cuasing this?
Hi Eridius, That is because the default display property for img tags is 'inline'. If you apply display:block to the img the space will disappear. img { display:block; } Joel Birch.