Move Club Notes out of Gift Message during Club Signup

Hi,
When you join a club, you check a box for “Add a gift message or special instructions”. When you check that, two text fields start displaying:

  1. Gift Message
  2. Club Notes / Special Instructions

I have a feeling this is a mistake. If you move the div with class v65-gridRow v65-specialInstructions outside of the div that looks like this, then they can leave club notes/special instructions without flagging it as a gift order. The two are unrelated.

Change this:

	<div class="v65-gridRow v65-giftMessage">
		<div class="v65-gridCol-12">
			<label for="giftMessage">Gift Message</label>
			<textarea id="giftMessage" name="giftMessage" v65js="giftMessage" maxlength="249"></textarea>
			
				<br/><span v65js="giftMessageMaxLength">249</span> characters left.
			
		</div>
	</div>

	<div class="v65-gridRow v65-specialInstructions">
		<div class="v65-gridCol-12">
			<label for="notes">Club Notes / Special Instructions</label>
			<textarea id="notes" name="notes" v65js="orderNotes" ></textarea>
			
		</div>
	</div>
</div>

To this:

	<div class="v65-gridRow v65-giftMessage">
		<div class="v65-gridCol-12">
			<label for="giftMessage">Gift Message</label>
			<textarea id="giftMessage" name="giftMessage" v65js="giftMessage" maxlength="249"></textarea>
			
				<br/><span v65js="giftMessageMaxLength">249</span> characters left.
			
		</div>
	</div>

	
</div>
Club Notes / Special Instructions
		</div>
	</div>

I tested it and it works great.

Code doesn’t paste very well here, user error. In a nutshell, if this doesn’t make sense, then in lamens terms, move the Club Notes / Special Instructions out of the gift area. Please?