I am not getting the second p tag in my xsl... providing my code below...
http://xsltransform.net/b4GWV9/17
<xsl:for-each select="child::*">
<xsl:if test="normalize-space(.)!=''">
<p class="specifications__value-title">
<xsl:value-of select="." />
</p>
</xsl:if>
</xsl:for-each>
providing my html output also below
<li class="specifications__value">
<p class="specifications__value-title">Dimensions</p>
**<p class="specifications__value-copy">5.38 x 2.75 x 0.31 inches</p>**
</li>
you need to change
into
I also noticed in your output that there are two
<p class="specifications__value-title">
. Maybe you meant the other one to be<p class="specifications__value-copy">
.