Hi ,
I have a banner div which is occupied by an Image. And there is a title text over the banner image. When I try to add ICE over the title datum, it is not working. But when I remove the banner image , the ICE is working.
Is therre any workaround for this ?
Here is my sample code
<div class="section-banner row" in-context-edit="{/Properties/Data/Datum[@ID='Feature_Image']/Image/@ID}">
<!-- The Banner Image -->
<img class="col-xs-12 padding-zero" alt="Banner">
<xsl:attribute name="src"><xsl:value-of select="$image"/></xsl:attribute>
</img>
<div class="carousel-caption">
<ol class="breadcrumb-section col-xs-12">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
</ol>
<h1 class="b-heading m-b-1" >
<img class="dyn-bannerIcon">
<xsl:attribute name="src">$URL_PREFIX/webserverdocs/icon.png</xsl:attribute>
</img>
<!-- The ICE field which is not working when the banner is present -->
<span in-context-edit="{/Properties/Data/Datum[@ID='Title']/@ID}" ><xsl:value-of select="/Properties/Data/Datum[@ID='Title']" /></span>
</h1>
<div class="clearfix"></div>
</div>
</div>