I set the width of cell[0] by CSS style sheet to 8%
but it renders about 25% and
crunches the other cells to the right?
Pseudo HTML 'code':p
var addcode=itemrow.insertCell(0);//part of insertrow
addcode.className='code';
addcode.appendChild(document.createTextNode(code));
.code {width:8%; text-align:left; padding-left:5px;
border-right:1px solid black; white-space:nowrap;}
/* .code width is about 25% and crunches up the other
td/cells in the row*/:confused: