在wordpress网站主页的最底部的不需要的空间

时间:2017-06-24 21:40:18

标签: php html css wordpress web

我对我创建的网站有疑问。它在主页的最底部有不必要的空间。无论我做了什么,它仍然存在。该网站是用wordpress构建的。 我尝试从 functions.php 的底部删除结束 php 标记。  什么都没有用。

页面链接为 http://icoachgym.com/

2 个答案:

答案 0 :(得分:0)

.call-to-action类的边距为500px。在文件my-custom-styles.css。

enter image description here

答案 1 :(得分:0)

您的CSS存在问题。它在第286行。http://icoachgym.com/wp-content/themes/icoachgym/assets/css/my-custom-styles.css

我的定制-styles.css的:286

.call-to-action {
    margin-bottom: 500px;
}

你需要改变它:

.call-to-action {
    margin-bottom: 50px;
}