how to get rid of extra space around text in tables?

filmmaker24

New Member
Hello,

I keep having a problem with extra space showing up around my text when it's all placed within cells in a table. As I work on it it all looks fine and close together, but when you preview it in any browser suddenly everything gets moved down with extra space within those cells. Is there any way to get rid of it and have my text snugged tightly within each cell as I intend?

Thanks!

Rob
 

qadisha

New Member
With CSS you can assign a class to that table, eg:
.table1{
padding:0px;
}

With HTML, just add : cellpadding="0"

The 0 can be replaced by whatever you think looks right.
 

filmmaker24

New Member
I tried your idea, but it still has too much space. I'm trying everything and researching the net like crazy, but still can't find a solution. I know what I need can be done. I've seen it before. Any other ideas? I think I'll see if I can view the code of anywhere else it's being done.
 
Top