如何在Weebly中更改ul-list-style-image。

时间:2015-09-08 06:17:48

标签: html css html-lists weebly

我在Weebly上创建页面时遇到了问题。所以当我像这样修改我的'ul'标签时:

#top-home-wrap #main #content ul {
color: yellow;
list-style-image: url('fa-check.png') !important;
}

它不起作用,因为它使用了一些默认主题样式。如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

我认为您的默认样式适用于li而不是ul。所以试试这个:

#top-home-wrap #main #content ul li{
   color: yellow;
   list-style-image: url('fa-check.png') !important;
}