Home › Forums › Support › Background of bullet list This topic has 1 reply, 2 voices, and was last updated 3 years, 11 months ago by David. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts October 1, 2021 at 6:40 am #1949251 Shivam I want to replace circle of bullet list with custom image. So, I created a (16px*16px) image and added following CSS code in customizer .entry-content ul li{ list-style-image:url(https://www.blogginginc.com/wp-content/uploads/2021/10/Bullet-point-icons.svg); margin: .8em 0;} I don’t know why my image is displaying too small. (screenshot) October 1, 2021 at 7:26 am #1949305 DavidStaff Customer Support Hi there, its to do with the viewbox sizing in the SVG. Scrap that method and try this instead: .entry-content ul li { list-style: none; position: relative; } .entry-content ul li:before { content: ''; position: absolute; left: -2em; top: 5px; height: 25px; width: 35px; background-image: url('https://www.blogginginc.com/wp-content/uploads/2021/10/Bullet-point-icons.svg'); background-size: contain; background-repeat: no-repeat; } Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In