I'm not too sure what it is that you're attempting to do with the table, so I'm a bit hesitant in answering, but I'll give it a shot.
I'm assuming that you want two columns of text to appear within the cell? I'm still new to this, but I think the way to go about it would be nested divs inside the cell:
Code:
<div>
<div class="left">X</div>
<div class="right">X</div>
</div>
And in your CSS stylesheet, you'd have something roughly resembling the following
Code:
div .left {
width:50%
float:left;
}
div .right {
width: 50%;
float:left;
}
I'm still new to HTML/CSS, but I *think* that should give you what you need. One of the more experienced members here will probably be able to give you more help...
*EDIT:
Oh, I'm not sure...were you wanting two columns, one at 71% and the other at 29%? If so, remove the percent value from the cell's code and just replace the percentages in the CSS markup with the relevant amounts.