Is there a way to hide the 'label' using CSS when text is present in the box?
[image] As shown, the label continues to be visible even with text inside.
HTML
<div class="field-wrap">
<label>example</label>
<input type="text" name="example"/>
</div>
<div class="field-wrap">
<label>example2</label>
<input type="text" name="example2"/>
</div>