Quote:
Originally Posted by Tulsa
When you don't have a piece on a particular column, the column collapses. The rows seem to stay intact when no pieces are on a particular row. Is there anyway to maintain the columns so they won't collapse?
|
Quote:
This is one of the known issues. For some reason browsers seem to ignore the width="40px" on the cols...
|
For anyone who's experiencing the collapsing columns this change works for me. In the chess template there's a table width of 33% but the table make-up is fixed width values. Changing these to percent values will give you 100% of the 33% table size and then 1/8 widths for the columns.
Replace this:
Code:
<table id="chessboard" width="320px" border="1px">
<tr>
<td> </td>
<td class="alt1" width="40px">a</td>
<td class="alt1" width="40px">b</td>
<td class="alt1" width="40px">c</td>
<td class="alt1" width="40px">d</td>
<td class="alt1" width="40px">e</td>
<td class="alt1" width="40px">f</td>
<td class="alt1" width="40px">g</td>
<td class="alt1" width="40px">h</td>
With this:
Code:
<table id="chessboard" width="100%" border="1px">
<tr>
<td> </td>
<td class="alt1" align="center" width="12.5%">a</td>
<td class="alt1" align="center" width="12.5%">b</td>
<td class="alt1" align="center" width="12.5%">c</td>
<td class="alt1" align="center" width="12.5%">d</td>
<td class="alt1" align="center" width="12.5%">e</td>
<td class="alt1" align="center" width="12.5%">f</td>
<td class="alt1" align="center" width="12.5%">g</td>
<td class="alt1" align="center" width="12.5%">h</td>
This will also center the letters for a little better display.