Blogspot的。如何删除背景图片?它在我的帖子上与我的照片重复

问题描述 投票:0回答:2

enter image description here

我将如何删除上面的背景,因为它是帖子的重复图片?

html css themes blogger blogspot
2个回答
1
投票
.bg-photo{
 background-image:none;
 }

使用此代码删除该背景图像


1
投票

.bg-photo {
    background-image: none !important;
    background-color: #f2f2f2;
}

添加此代码并添加您想要的背景代码。

© www.soinside.com 2019 - 2024. All rights reserved.