Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 1 of 1

Thread: Hide email address label from newsletter signup

  1. #1
    PD24 is offline Junior Member
    Join Date
    Jun 2011
    Posts
    26

    Default Hide email address label from newsletter signup

    I would like to hide the "Email Address" td label from the home page on the newsletter sign up. I dont have the source code, but was wondering if it was a string resource or something? OR if i can use jquery?<<But not sure how

    Here is the code:
    Code:
    <div id="ptkSubscribe">
    		<table width="50px" style="width:50px" class="NewsletterBox">
    		<tbody><tr>
    			<td colspan="2"></td>
    		</tr>
            
    <input type="hidden" value="" id="txt_NL_FirstName">
    <input type="hidden" value="" id="txt_NL_LastName">
    
    		<tr>
    		<td>Email Address</td>
    		<td>
                <input type="text" size="13" onkeypress="enterSubmit(event);" id="txtEmailAddress"><br>
            <input type="hidden" value="" id="txtCaptcha"><br></td>
    	</tr>
    	<tr>
    		<td align="left" colspan="2"><input type="button" onclick="clickSubmit();" id="cmdSubmit" value="Submit"></td>
    	</tr>
    	</tbody></table>
      </div>
    Any help is greatly appreciated..

    aspdnsf is fantastic so far!
    Last edited by PD24; 08-11-2011 at 01:44 AM. Reason: added the code