我删除了
background: url(none);
由于加载性能Why Firebug pretends that my stylesheet is calling my xmlrpc? ,我的样式表中的
问题是它现在导致css列表出现一些小故障。
知道怎么解决这个问题吗?
感谢。
更新:下面的图片
http://reboltutorial.com/wp-content/themes/minaflow/glitch.png
尝试将背景:无视建议但未解决问题/
ul.sidebar_list li ul li ul {
margin: 0px;
padding: 0px!important;
float: left;
width: 100%;
list-style-type: none;
background: none;
}
答案 0 :(得分:3)
参考您的其他问题,我假设您的意思是侧栏中列表项目的背景图片。您必须明确声明您不希望侧栏中小部件列表内的内部列表项上有背景图像。
请参阅styles.css第370行并添加background-image:none;
,如下所示:
ul.sidebar_list li ul li {
background-image:none;
}
祝你的博客好运!