在完成我的php电子邮件表单后,页脚甚至没有出现在inspect元素上

时间:2014-03-08 04:44:32

标签: php html css

我在我的网站上添加了一个PHP邮件表单,在完成电子邮件表单加载页面后,我的页脚未加载,标签甚至没有显示在inspect元素中。 我将页面链接在下面。 编辑:仅在提交时出现错误时才会显示页脚。

在表单提交之前和之后,您可以看到页脚 http://andytest.herokuapp.com/contact.php

任何帮助都表示赞赏,因为我不知道为什么要这样做。

2 个答案:

答案 0 :(得分:0)

页脚正在显示给我,这个CSS类已应用于它:

#footer {
    background-image: url("../../images/bottombar2.jpg");
    background-repeat: repeat-x;
    clear: both;
    height: 50px;
    min-width: 1200px;
    width: 100%;
}

这是你的页脚代码(使用firebug)

<footer>
    <div id="footer"></div>
  </footer>

enter image description here
因为我可以看到您正在使用HTML5 <footer>标签,但您可能正在使用不兼容的html5浏览器查看您的网站。 或者你想为你的页脚设置一个白色背景和菜单一样,然后就像这样更新你的CSS:

#footer {
    background-color:white;
    border-top:2px solid orange;
    clear: both;
    height: 50px;
    min-width: 1200px;
    width: 100%;
}

答案 1 :(得分:0)

我发现页面在被die()完成加载之前被杀死的错误;这使页面停止完成加载。感谢您的帮助,并引导我朝着正确的方向说明它是在php