this looks like everything has shifted but the first "headers"
It would be better if we saw the code, not the output to tell you exactly which element(s) need to be adjusted, however its most likely that you will just need to apply the padding-left: 25px; to the table headers row, an example would be
Code:
<table>
<caption>Select 1 option in each row</caption>
<tr>
<th>Description</th>
<th>Never</th>
<th>Rarely</th>
<th>Occasionally</th>
<th>Fairly Often</th>
<th>Often</th>
</tr>
<tr>
<td>a. desc</td>
<td>--radiobox--</td>
<td>--radiobox--</td>
<td>--radiobox--</td>
<td>--radiobox--</td>
<td>--radiobox--</td>
</tr>
<tr>
<td>b. desc</td>
<td>--radiobox--</td>
<td>--radiobox--</td>
<td>--radiobox--</td>
<td>--radiobox--</td>
<td>--radiobox--</td>
</tr>
<tr>
<td>c. desc</td>
<td>--radiobox--</td>
<td>--radiobox--</td>
<td>--radiobox--</td>
<td>--radiobox--</td>
<td>--radiobox--</td>
</tr>
<tr>
<td>d. desc</td>
<td>--radiobox--</td>
<td>--radiobox--</td>
<td>--radiobox--</td>
<td>--radiobox--</td>
<td>--radiobox--</td>
</tr>
</table>
Code:
<style type="text/css">
table td, table th {padding-left: 25px;}
</style>
oh as a note... if you cannot seem to figure it out and you post code... please wrap it with [code] tags without the dot
Bookmarks