To achieve the desired outcome of displaying "(även uppfinnare)" at the top row, you can use the following HTML:
<div class="data-box">
<div class="personName"><strong>
3. Kee Marcello
</strong></div>
<div class="otherDetails">(även uppfinnare)</div>
<table border="0">
<tr><td></td><td>Telefon</td><td>123</td></tr>
<tr><td></td><td>Fax</td><td>123</td></tr>
<tr><td></td><td>E-post</td><td>123</td></tr>
<tr><td>null</td><td>Referens</td><td></td></tr>
</table>
</div>
The relevant CSS that will style this layout is as follows:
.data-box {
width:650px;
height:100px;
border:1px solid #cbcbcb;
}
.personName {
float:left;
width:300px;
}
.otherDetails {
float:right;
width:450px;
}
If you need further assistance or have any questions, feel free to ask. Thank you!