I have the following list items to display details on an application. The item for proposal sometimes has lots of text which goes to a new line. The problem is that the new line always start underneath the label text and doesn't look correct. Is it possible to get the text to wrap around on the right hand side?
Here's a screenshot of what I mean:
Code:
<li><div><span>Application Number</span><xsl:value-of select="APPLICATION_NUMBER" /></div></li> <li><div><span>Site Address</span><xsl:value-of select="SITE_ADDRESS" /> </div></li> <li><div><span>Application Type</span><xsl:value-of select="APPLICATION_TYPE_DESCRIPTION" /> </div></li> <li><div><span>Development Type</span><xsl:value-of select="DEVELOPMENT_TYPES" /> </div></li> <li><div><span>Proposal</span><xsl:value-of select="PROPOSAL" /> </div></li> <li><div><span>Current Status</span><xsl:value-of select="STATUS_DESCRIPTION" /> </div></li>
Comment