CSS图像没有显示Wordpress

时间:2012-07-05 13:32:57

标签: html css wordpress templates

我一直在尝试将图像添加到Wordpress模板中,当我添加标签时,它会自动添加display:none;当它出现在网站上时。所以我决定将它添加为带有div的css图像。

我已将此添加到CSS:

.myad a{
    background-image: url(http://www.henstagweekends.co.uk/images/advert.png);
    background-repeat: no-repeat;
    display: block;
    height: 248px;
    width: 189px;
    z-index: 100000;
}

我已将此添加到标记之前的footer.php中:

<div class="myad">
<a href="/jobs-with-epic-events"></a>
</div>

我添加了一个临时的bg颜色来显示它的位置。看看页面的最底部。 http://www.henstagweekends.co.uk/

知道造成这种情况的原因是什么?

1 个答案:

答案 0 :(得分:0)

url('URL')指的是图像所在的路径。尝试将图像下载到您的文件夹并引用它:background-image: url('<path>/advert.png')