时事通讯块

时间:2010-12-06 08:52:22

标签: php html

只是想知道是否有人可以帮助我在我的网站上创建新闻通讯块。

到目前为止,我在网站上有以下内容:

<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>

现在我正在使用Campaign Monitor进行简报注册,而且我需要整合以下内容:

<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>

进入我已经无需进一步更改CSS以适应这一点,并希望有人向我展示如何将广告系列监控代码集成到现有代码中。

由于

1 个答案:

答案 0 :(得分:0)

试试:

        <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>

我不确定您是否需要更新action代码中的<form>参数。
也许你需要这样做。