I'm trying to modidy bullets list on WordPress https://www.willgo.fr/. I'm using the css below but the bullets are not align.
ul.special_bullet li {
list-style: none!important;
}
ul.special_bullet li:before {
color: #00b300;
content: "\2022";
float: left;
overflow: hidden;
position: relative;
top: -15px;
left: -5px;
}
Do you have any suggestion ?