Customers are not seeing the + to open the coupon box on OSEL. How should I modify this code to change the default state to expanded vs closed.
<div class="row">
<div class="column whole medium-half">
<a href="#" data-toggle=".coupon-wrapper" class="fields-heading">Have a Coupon?</a>
<div class="coupon-wrapper clearfix" <mvt:if expr="g.Action NE 'ACPN'">style="display: none;"</mvt:if>>
<br>
<form method="post" action="&mvte:urls:_self:secure;">
<input type="hidden" name="Action" value="ACPN" />
<div class="column three-fourths np">
<div class="floating-placeholder">
<input type="text" name="Coupon_Code" id="l-coupon-code" class="input" value="&mvte:global:Coupon_Code;">
<label for="l-coupon-code">Coupon Code</label>
</div>
</div>
<div class="column one-fourth np">
<button class="button floating-button button-round">Apply</button>
</div>
</form>
</div>
<div class="row">
<div class="column whole medium-half">
<a href="#" data-toggle=".coupon-wrapper" class="fields-heading">Have a Coupon?</a>
<div class="coupon-wrapper clearfix" <mvt:if expr="g.Action NE 'ACPN'">style="display: none;"</mvt:if>>
<br>
<form method="post" action="&mvte:urls:_self:secure;">
<input type="hidden" name="Action" value="ACPN" />
<div class="column three-fourths np">
<div class="floating-placeholder">
<input type="text" name="Coupon_Code" id="l-coupon-code" class="input" value="&mvte:global:Coupon_Code;">
<label for="l-coupon-code">Coupon Code</label>
</div>
</div>
<div class="column one-fourth np">
<button class="button floating-button button-round">Apply</button>
</div>
</form>
</div>
Comment