如何在 Weebly 中更改 ul - list-style-image。
How to change ul - list-style-image in Weebly.
我在 Weebly 上创建页面时遇到问题。所以当我像这样修改我的 'ul' 标签时:
#top-home-wrap #main #content ul {
color: yellow;
list-style-image: url('fa-check.png') !important;
}
它不起作用,因为它使用了一些默认的主题样式。如何解决这个问题?
我认为您的默认样式应用于 li
而不是 ul
。所以试试这个:
#top-home-wrap #main #content ul li{
color: yellow;
list-style-image: url('fa-check.png') !important;
}
我在 Weebly 上创建页面时遇到问题。所以当我像这样修改我的 'ul' 标签时:
#top-home-wrap #main #content ul {
color: yellow;
list-style-image: url('fa-check.png') !important;
}
它不起作用,因为它使用了一些默认的主题样式。如何解决这个问题?
我认为您的默认样式应用于 li
而不是 ul
。所以试试这个:
#top-home-wrap #main #content ul li{
color: yellow;
list-style-image: url('fa-check.png') !important;
}