I'm using the following xsl code for my search core result in sharepoint :
<xsl:stylesheet version="1.0" xmlns:xsl="
http://www.w3.org/1999/XSL/Transform" xmlns:ddwrt2="urn:frontpag
e:internal
" >
<xsl:template name="DisplayOfficeProfile
">
<xsl:param name="title" />
<xsl:param name="dep" />
<xsl:param name="phone" />
<xsl:param name="skills" />
<xsl:param name="responsibility" />
<table>
<span class="psrch-Metadata">
<xsl:if test='string-length($title
) > 0'>
<tr>
<td><b>Functie: </b></td>
<td><xsl:value-of select="$title" /></td>
</tr>
</xsl:if>
<xsl:if test='string-length($dep) > 0'>
<tr>
<td><b>Afdeling: </b></td>
<td><xsl:value-of select="$dep" /> </td>
</tr>
</xsl:if>
<xsl:if test='string-length($phone
) > 0'>
<tr>
<td><b>Telefoon nr: </b></td>
<td><xsl:value-of select="$phone" /> </td>
</tr>
</xsl:if>
<xsl:if test='string-length($skill
s) > 0'>
<tr>
<td><b>Skills: </b></td>
<td><xsl:value-of select="$skills" /> </td>
</tr>
</xsl:if>
<xsl:if test='string-length($respo
nsibility)
> 0'>
<tr>
<td><b>Responsibility: </b></td>
<td><xsl:value-of select="$responsibility" /> </td>
</tr>
</xsl:if>
</span>
</table>
<br/>
</xsl:template>
</xsl:stylesheet>
But it does not show the table structure ??
Extra question : How do I show the users image as shown in the My Site ?