﻿<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
    <xsl:output method="html" indent="yes"/>
  
    <xsl:template match="status">
      <table>
        <tr>
          <td height="48" width="48">
            <img src="{user/profile_image_url}"/>
          </td>
          <td height="81" width="412" style="background-image:url('http://www.sharepointevolved.com/SiteAssets/CallOut.png'); height: 81 px;width:412 px; vertical-align:middle;">
            <div style="height: 81 px;width:412 px;padding-left:41 px;padding-right:7px;padding-top:7px;color:white;overflow:auto;"><xsl:value-of select="text"/>
            </div>
          </td>
        </tr>
      </table>
    </xsl:template>
  
     
  
</xsl:stylesheet>

