Newsletter Block
Just wondering if someone can help me create a newsletter block on my website.
So far I have the following on the site:
<div class="one-fourth-last panel border-vert-left newsletter">
<div class="padleft">
<h4>Join Our<br/> Newsletter</h4>
<p>To receieve our newsletter, simply sign up below:</p>
<table cellpadding="0" cellspacing="0">
<tr>
<td><input name="" class="开发者_如何学运维field"/></td>
<td><input type="image" name="go" src="images/newsletter-input-button.png" alt="Go" class="form-imagebutton" /></td>
</tr>
</table>
<span class="small">* We will not share your information.</span>
</div>
</div>
Now I'm using Campaign Monitor for newsletter sign-ups and I somehow need to intergrate the following:
<form id="newsletter-form" action="http://companyname.createsend.com/t/r/s/hrihuj/" method="post">
<p>Stay up-to-date with what we're up to</p>
<input id="email-address" type="text" value="Join our newsletter" name="cm-hrihuj-hrihuj" onclick="this.value='';" />
<input id="submit" type="submit" value="go" name="commit"/>
</form>
Into what I have already without having to further change the CSS to accomodate this and would appreciate someone showing me how I can intergrate the campaign monitor code into the existing code.
Thanks
Try that:
<div class="one-fourth-last panel border-vert-left newsletter">
<div class="padleft">
<h4>Join Our<br/> Newsletter</h4>
<p>To receieve our newsletter, simply sign up below:</p>
<form id="newsletter-form" action="http://companyname.createsend.com/t/r/s/hrihuj/" method="post">
<table cellpadding="0" cellspacing="0">
<tr>
<td><input id="email-address" name="cm-hrihuj-hrihuj" onclick="this.value='';" type="text" class="field" /></td>
<td><input type="image" name="commit" src="images/newsletter-input-button.png" alt="Go" class="form-imagebutton" /></td>
</tr>
</table>
</form>
<span class="small">* We will not share your information.</span>
</div>
</div>
I'm not sure wether you need to update the action
param within the <form>
tag.
Maybe you need to do that.
精彩评论