我最近开始使用Blogger的Ethereal模板构建网站:http://healthmindspa.blogspot.com/
背景透明度太亮,难以阅读背景图像上的书写。有人向我提供了以下修复程序,以添加为HTML / JavaScript小工具:
<style>
.post-outer {
background: rgba(17, 17, 17, 0.7)!important;
}
</style>
效果很好。邮政透明度现在正如我所愿,但这种无意的副作用是,当我上传带有透明背景的图像(商业徽标或社交媒体按钮)时,图像背景显示为白色 - 正如您可以从徽标上看到的那样着陆页。
有什么方法可以解决这个问题吗?
谢谢,
微米。
答案 0 :(得分:1)
尝试添加到css中。此代码从图像中删除白色背景。
.post-body img {
background: transparent !important;
/*box-shadow: none !important;*/ /*this remove shadow*/
}