Beeky1;10965860 wrote:Sorry but I am not familiar with css style sheets.
I would strongly recommend you become familiar with them, as they are a fundamental part of any reasonably modern web application (as far as the user interface goes). You can use an in-line style such as:
<td style='width: 50px;'>
But using a class (or ID) with a separate CSS style file is more flexible, plus the stylesheet file gets cached by the browser, so it does not need to be downloaded with each page request that uses the same stylesheet.
w3schools CSS section