-1

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/

1 Answers1

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