I'm guessing this has been discussed before, but I couldn't find anything on it, so here goes. I'm using H2 tags on a site, and trying to swithch to non H2 text on the next line, without a space between. I tried putting the H2 tag in one cell, and the regular text in the next cell, but that didn't work, there was still a return. Is there any way to do what I'm looking to do? Seems to me that I've done it before, but I have no recollection of how (probably by mistake if I did figure it out). Thanks. Toonces51
Use styles to control the margins. h2 { margin-bottom: 0; } p { margin-top: 0; } Code (markup): cheers, gary
Well, that certainly was easy. And I was wrong--I certainly haven't done that before. Thanks for the help! Toonces51