Thanks Mike!
That removes the text, but it stills leaves a blank between the "E-Mail Address again:" text and input text box. I might need to hardcode a change to remove it?
Looking at the page source, I see this:
<div style="text-align:left;">
<span style="font-size:x-small; font-weight:normal;">Please enter your E-mail Address a second time.</span>
<br>
<input id="si_contact_email2_1" type="email" size="40" value="" name="si_contact_email2" style="text-align:left; margin:0;">
</div>
The three things that would need to be done in order enable/disable it thru CSS would be (1) Move the BR tag inside the span tag, and (2) assign a class name to the span, and (3) add a section in the Style area so you could hide/unhide the span. If the span is hidden, then the BR tag would not come into effect and the blank line would not appear!
So something like this:
<div style="text-align:left;">
<span class="some-new-class">Please enter your E-mail Address a second time.<br></span>
<input id="si_contact_email2_1" type="email" size="40" value="" name="si_contact_email2" style="text-align:left; margin:0;">
</div>
And then in Style you would have a new entry for "some-new-class" with this in it:
font-size:x-small; font-weight:normal;
Thanks
EDIT: Had to change my br tags to BR so they dont get removed!