You can't just put stuff in a table if it's not in a <tr><td> All things must be in a <td> tag. The <div> tag is not. And, you can't start a div and not close it within the same element. You can't go <td><div></td></div> that is not proper and WILL cause problems - it has to be <td><div></div></td>. Maybe you didn't code it, I don't know who did, but it's causing problems.
|