爲什麼自定義背景顯示?這是我添加的CSS應該工作。
@media (min-width: 992px) {
body.custom-background {
background-image: none !important;
display: none; }
}
鏈接到網站:http://goo.gl/RgG2Ct(向下滾動,你會SE這條是唯一的假設是在移動版)
爲什麼自定義背景顯示?這是我添加的CSS應該工作。
@media (min-width: 992px) {
body.custom-background {
background-image: none !important;
display: none; }
}
鏈接到網站:http://goo.gl/RgG2Ct(向下滾動,你會SE這條是唯一的假設是在移動版)
您可以嘗試
@media screen and (min-width: 992px)
不起作用:http://postimg.org/image/9y9vefd1f/ 嗯 –
這是媒體屏幕,而不是媒體和屏幕;) – KCarnaille
哦SRY基因,但還是不行:HTTP ://postimg.org/image/fwtzf9erp/ –
試試這個編號:
@media (min-width: 992px)
{
body
{
background-image: none !important;
}
}
謝謝。
不起作用:http://postimg.org/image/nwztt4o5p/ hmmm –
背景:無!重要。嘗試此 –
不起作用:http://postimg.org/image/peyfyj8bv/ –
你需要清理了一點東西...嘗試這樣的:
@media screen and (min-width: 480px) {
body.custom-background {
background-image: none !important;
display: none;
}}
看來你有一組額外的()和一個錯位的}
不起作用:(:http://postimg.org/image/bz6l2wemn/ –
我們需要看到的代碼 - 而不僅僅是CSS。嘗試刪除空(), –
我不知道如何找到代碼,它是我正在修改的wordpress主題,創作者給我寫了body.custom-background是指通過WordPress後端上傳的背景。 更準確地說,這是我被告知的: 你好, 你需要對style.css文件進行如下更改以刪除主題中的圖像。該文件將在wp-contents/themes/kane中看到。 ++++++ body.custom-background { background-image:none!important; } ++++++ –