I am currently using the template
<xsl:template match="SUBQUESTION">
<SPAN CLASS="indent">
<xsl:value-of select="self::node()"/>
</SPAN>
</xsl:template>
Where Indent is :
.indent
{
text-align: left;
margin-left: 32px;
}
In the C.S.S . This gives the effect of an inch indent from the left margin . However if the text inbetween the SUBQUESTION streches over two lines the second line is not effected by the indent command . E.G
this is where the question should start blah blah blah blah blah blah blah blah blah
How can I get the second line to also move in an inch from the left margin ??
Thanks for your help
Craig
<xsl:template match="SUBQUESTION">
<SPAN CLASS="indent">
<xsl:value-of select="self::node()"/>
</SPAN>
</xsl:template>
Where Indent is :
.indent
{
text-align: left;
margin-left: 32px;
}
In the C.S.S . This gives the effect of an inch indent from the left margin . However if the text inbetween the SUBQUESTION streches over two lines the second line is not effected by the indent command . E.G
this is where the question should start blah blah blah blah blah blah blah blah blah
How can I get the second line to also move in an inch from the left margin ??
Thanks for your help
Craig