我需要覆盖放在博客正文中的css样式。见图:
通过以下代码:
html,body{
background:#0a0a0a url(http://static.boo-box.com/campaigns/youtube-music-box-n0210-3110-cpm-bg_20131007/bg_booboxrosbg1280x1024-1.jpg) no-repeat fixed top center !important;
}
原博客的背景颜色是:
我试图覆盖jquery,css,但没有任何效果。任何建议? 下面是我尝试过的代码,但都没有。
<style>
html,body{
background:#F1F1F1 !important;
}
</style>
$('body').removeAttr('background');
要查看在线访问问题:www.obovio.com.br
答案 0 :(得分:1)
尝试css而不是attr。尝试:
$('html,body').css('background','#F1F1F1');
答案 1 :(得分:0)
将您的jQuery更改为:
$(window).bind("load", function() {
function removeBG() {
$('html, body').css('background', '#F1F1F1');
}
setTimeout('removeBG()', 1000);
});