cjvannette, you should review how the infield label works. Check out the example code given on https://www.viget.com:
<p>
<label for="field_id">Label Text</label><br />
<input type="text" name="field_id" value=""
id="field_id">
</p>
the contact 7 equivalent is:
<p>
<label for="yourname">Your Name (required)</label><br />
[text* your-name id:yourname placeholder:'']
</p>
add the javascripts to your template and you’re good to go.