简体   繁体   中英

How to change ul - list-style-image in Weebly.

I got a problem by creating page on Weebly. So when I modify my 'ul' tag like this:

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

It doesn't work because it is using some default theme styles. How to fix this problem?

I think your default style is applied over the li instead ul . So try this:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM