我不是HTML知识渊博。我在这里的帖子是关于本网站中HTML的问题我创建了http://testingthistemplate.weebly.com/
我只想删除我在Weebly网站标题中使用的灰度代码。在Weebly或Weebly支持社区中没有人回答我的问题。我不知道该怎么做。我想要的只是我的网站标题(它们来自Weebly模板)以正常颜色显示标题图像(它们是我的,我上传的),而不是黑白。
我真的非常感谢您在下面编辑此代码并将其重新发布给我进行复制。抱歉,添麻烦了。谢谢!!!!!
body {
height: 100%;
font-size: 15px;
font-family: 'Cabin', Arial, sans-serif;
line-height: 1;
background: #2e2e2e;
color: #818181;
padding: 0 !important;
margin: 0 !important;
-webkit-font-smoothing: antialiased !important;
-moz-font-smoothing: antialiased !important;
-o-font-smoothing: antialiased !important;
-moz-osx-font-smoothing: grayscale;
我真的很感谢你的帮助。
答案 0 :(得分:0)
尝试
#wrapper .wsite-background {
filter : none !important;
}
答案 1 :(得分:0)
你在None
样式表中有这个CSS:
main_style.css
请注意#wrapper .wsite-background {
width: 100%;
opacity: 0.4;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
background-color: transparent;z-index: 10;
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter: gray;
}
,-moz-filter
,-ms-filter
和-o-filter
设置?删除那些。
答案 2 :(得分:0)
尝试搜索main_style.css
文件或扩展名为.css
的内容。十找到一个名为#wrapper .wsite-background
的部分。更改以下内容:
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter: gray;
到
-webkit-filter: none;
-moz-filter: none;
-ms-filter: none;
-o-filter: none;
filter: none;
filter: none;