Forum Moderators: open

Message Too Old, No Replies

I am going crazy trying to . . .

get the tables to butt up against each other so that

         

goneriding

7:53 pm on Nov 19, 2003 (gmt 0)

10+ Year Member



I am going crazy trying to get the tables to butt up against each other so that my images do not have lines through them. I have created the slices and I am placing them into my table in Dreamweaver MX. Then I view my page in IE and I have lines going through the images where the cells seperate. I know this is probably a simple task, but it is driving my looney. I have viewed my code and everything looks normal?

Thanks for your help

DrDoc

8:01 pm on Nov 19, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



That's because images are inline elements (resting on the base line), so IE leaves room under your image for the descenders on letters like g p q etc. Put this in your style sheet:

td img {
vertical-align: bottom;
}

goneriding

8:12 pm on Nov 19, 2003 (gmt 0)

10+ Year Member



Thank you. I also exported as html and images, opened the html file in IE and saved it to my folder. Then I opened the saved IE page in Dreamweaver and it looks great tables and all. However, if I open the saved HTML file directly in DW it comes in as a solid gif image. Confusing.