Please help me to solve issue with css list-style. I am trying to remove circles that appear before the link. I have tried almost everything, but no success. Also there are strange borders which appear before the link. here is live website http://media-grozny.ru/services/
Asked
Active
Viewed 79 times
-1
-
How about the code? http://stackoverflow.com/help/how-to-ask – Dayan Mar 02 '17 at 12:51
-
1Put the required code to generate the bug here. this question cannot be reused or help others. – Smit Mar 02 '17 at 12:52
-
This style is solve your problem .color-list li:before { display: none !important; } – Ihor Skliar Mar 02 '17 at 12:56
1 Answers
0
Use
li {
list-style-type: none;
}
As in the example:
li {
list-style-type: none;
}
<ul>
<li> test </li>
<li> test </li>
<li> test </li>
</ul>

Plenarto
- 639
- 3
- 16