with the one you made for me all templates show this code.
Code:
function setWidth() {
for(i=0; i<cells.length; i++) {
if(cells[i].childNodes.length<5) {
cells[i].childNodes[0].childNodes[0].style.width=''+width+'px';
cells[i].childNodes[0].childNodes[1].style.width=''+width+'px';
cells[i].childNodes[1].childNodes[1].style.width=''+width+'px'
cells[i].childNodes[2].style.width=''+(width+47)+'px';
}
else {
cells[i].childNodes[1].childNodes[1].style.width=''+width+'px';
cells[i].childNodes[1].childNodes[3].style.width=''+width+'px';
cells[i].childNodes[3].childNodes[1].style.width=''+width+'px'
cells[i].childNodes[5].style.width=''+(width+47)+'px';
}
}
}
and i overrided it