着陆页的CSS一直被覆盖?

时间:2014-09-26 13:57:13

标签: html css wordpress templates background

我有一个自定义页面模板,我用作登陆页面。在此模板中,我将特定图像定义为背景。

在我的特定模板中,我在页面中添加了这个css:

<body background="frank4.jpg" style="background-repeat: no-repeat; background-attachment:fixed;background-position:center ; overflow:hidden;">

但这一直被我的一般CSS覆盖。为什么,如何更改它?

网站为www.frankgalan.be

过去这种方式很好,但由于某些原因它不再存在。

1 个答案:

答案 0 :(得分:1)

请尝试使用内联背景属性设置!important 来覆盖之前相同规则的调用:

<body style="background: url('frank4.jpg') no-repeat center top fixed !important; overflow: hidden;">

希望这有帮助