将Action部分调用居中

时间:2017-04-28 00:52:29

标签: css wordpress

我一直在努力使用这个WordPress主题:TOTAL好几天。

我认为我找到了适合我的部分,Call To Action Section

我添加了背景图片和按钮,但问题是它没有占据我的 HOME 页面的中心。

图片尺寸为1280px X 720px

好像有什么东西藏在图像的下半部分。

我附上了图片。 有没有人可以看到我做错了什么?

enter image description here

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:0)

如果我正确理解您的问题,您希望将图像置于主页背景中心。这是对的吗?

您可以将以下代码添加到主页的CSS中:

body {
 background: url('https://i.stack.imgur.com/mvJMy.png') no-repeat center;
  background-size: cover;
}

这是一个我觉得非常有用CSS的网站,以及一些关于背景的文档...... https://css-tricks.com/almanac/properties/b/background/

答案 1 :(得分:0)

@Angelina,

尝试添加背景图像的完整高度。

.classForTheBgImage {
   background: url( link to the image );
   height: 800px;
}