当WordPress主题在服务器上时,横幅图像看起来不同?

时间:2018-02-08 14:42:14

标签: css wordpress wordpress-theming themes

我创建了自己的WordPress主题。它看起来很棒,我在本地版本上调整了一切。我在Web服务器上移动主题后出现了很多问题。但我很担心标题。

在我的header.php代码和相应的css样式之上:

 //If page is with id 27- load css class called bannerHome

if(is_page(27))
{$class_name='bannerHome';}


 //the img/ forlder is  located in the theme folder. 

div.bannerHome{
width: 100%; 
height: 100%;
background-image:  url(img/bigbg.jpg); 
background-repeat: no-repeat; 
background-position:fixed; 
background-color: black;
}

因此横幅不会覆盖整个页面。在页面的末尾有一个很大的白点。

可能是什么问题?

0 个答案:

没有答案