CSS code:
ul {
list-style: none;
padding:0;
margin:0;
}
li {
padding-left: 1em;
text-indent: -.7em;
}
li:before {
content: "• ";
color: #28B779; /* or any other color you like */
font-size:2em;
}
<ul>
<li>English</li>
</ul>
Is there a way to align the text with the bullet point? Currently, it looks like this: