我在我的某个页面上使用了一个我无法编辑代码的组件,页面上有一个我希望覆盖的图标,任何人都可以帮助我如何做到这一点。谢谢!
.classname {
background: transparent url(/img/vote/promotebg_on.png ) no-repeat scroll center top;
}
答案 0 :(得分:0)
当你无法编辑源代码时,不确定如何覆盖它,但也许!重要的符号对你有用。
.classname {
background: transparent url(/img/vote/promotebg_on.png ) no-repeat scroll center top !important;
}
答案 1 :(得分:0)
<script>
$( document ).ready(function() {
$('.classname').css("background-image", "newimage.png");
});
</script>