[css-d] IE6 problem; gap or extra margin? in header

2007-07-02 Thread Erik Visser
Thought i could figure it out myself. Checked out positioniseverything for ie bugs. But can't find it. In the header there are 2 images. IE7, Firefox and the others display them ok. But with IE 6 there's a gap under the images. Tried all sorts of adjustments. But the gap won't go. This is the

Re: [css-d] IE6 problem; gap or extra margin? in header

2007-07-02 Thread Kevin Evans
Hey Erik, The space is probably because CSS sometimes treats images as text with the baseline below, acting as space. To get rid of it you either have to add display: block; to the image or a float: left; to the image Kevin On Jul 2, 2007, at 12:31 PM, Erik Visser wrote: Thought i

Re: [css-d] IE6 problem; gap or extra margin? in header

2007-07-02 Thread Erik Visser
Kevin Evans wrote: Hey Erik, The space is probably because CSS sometimes treats images as text with the baseline below, acting as space. To get rid of it you either have to add display: block; to the image or a float: left; to the image On Jul 2, 2007, at 12:31 PM, Erik Visser