Forum Moderators: mack
Cell by cell basis (HTML method)
In the first
<tr> of your <table> code, add this code to each <td>: <td width="75"> The width is in pixels and each
<td> can have it's own width. Once you reach the first <[b][red]/[/red][/b]tr> don't bother adding any more width values as the first row's width's will be 'inherited' by the remaining rows. Entire table (CSS method)
1. Add this styling to your external CSS file:
td { width: 75px; } Or, 2. Add this code to the head of the document:
<style type="text/css">
<!--
td { width: 75px; }
-->
</style> Hope this helps and welcome to WebmasterWorld, dloreski!