Hi All,
maybe a bit of a stupid question,
but how do I get the text in the first 4 table rows to be vertically aligned?
I have tried div and valign="middle" align="center", but no succes on this table. Funny enough they do work in my test files.
By the way this script is partly written in PhP.
JR
(In need of a cool signature)
maybe a bit of a stupid question,
but how do I get the text in the first 4 table rows to be vertically aligned?
I have tried div and valign="middle" align="center", but no succes on this table. Funny enough they do work in my test files.
By the way this script is partly written in PhP.
Code:
<table border=1>
<colgroup>
<col width="200">
<col width="200">
<col width="100">
</colgroup>
<tr>
<td>Surname</div</td>
<td><?=$contact['surname']?></td>
<td rowspan=4 align='right'>
<?
echo "<img src=\"resize_image.php?image=contact/"
.$contact['id'].".jpg\" align=center>";
?>
</td>
</tr>
<tr>
<td>Forename</td>
<td><?=$contact['forename']?></td>
</tr>
<tr>
<td>Date of Birth</td>
<td><?=$contact['dateofbirth']?></td>
</tr>
<tr>
<td>Nationality</td>
<td><?=$contact['nationality']?></td>
</tr>
<tr>
<td>Studies</td>
<td colspan=2><?=$contact['studies']?></td>
</tr>
<tr>
<td>ELSA CV</td>
<td colspan=2><?=$contact['elsa']?></td>
</tr>
<tr>
<td>What does my ELSA-Function involve?</td>
<td colspan=2><?=$contact['function']?></td>
</tr>
</table>
JR
(In need of a cool signature)