CSS on Tables!?
CSS on Tables!?
Out of context: Reply #3
- Started
- Last post
- 4 Responses
- sp0
hm. oh, well that does change things a bit.
you could just assign padding to each cell in the css.
but, you may still need to insert a class into the table or td tag.
so, either way, something in the way php echos out html needs to be changed.
you could do:
table class="x"
and your css would look like:
.x {
bla bla css
}
.x td {
padding: 2px;
}
or something - if the board even shows the code.