Php 通讯栏

Php 通讯栏,php,html,Php,Html,只是想知道是否有人可以帮我在我的网站上创建一个时事通讯块 到目前为止,我在网站上有以下内容: <div class="one-fourth-last panel border-vert-left newsletter"> <div class="padleft"> <h4>Join Our<br/> Newsletter</h4>

只是想知道是否有人可以帮我在我的网站上创建一个时事通讯块

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

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

加入我们的
时事通讯 要接收我们的时事通讯,只需在下面注册:

*我们不会共享您的信息。
现在我正在使用活动监视器注册时事通讯,我需要整合以下内容:

<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来适应这一点,并希望有人告诉我如何将活动监控代码集成到现有代码中

谢谢

试试看:

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

加入我们的
时事通讯 要接收我们的时事通讯,只需在下面注册:

*我们不会共享您的信息。
我不确定您是否需要更新
标记中的
操作
参数。

也许你需要这样做。

您好,那太好了,谢谢……但是,我已经丢失了表单上按钮的样式……如果我重新发布CSS,您是否可以看到我可能需要修改的内容?感谢如下:。newsletter.field{background:url(../images/newsletter-input-bakground.png)不重复;宽度:146px;高度:26px;边框:0px;字体大小:12px;左边填充:10px;}嗨!我想我的眼睛上有西红柿-P我不知道为什么这种行为会像你描述的那样。他们之间应该没有区别。。。可能您试图从第一个
标记中删除
id=“email address”
。有可能你给这个id分配了一个样式表…不,还是一样的…需要处理CSS。谢谢你的帮助,非常感谢