-4

I have image with dots captions (toltips) and i can't change color this bullets to red. How i do that? http://all4holidays.pl/kropki/

obiboke
  • 73
  • 8
  • Post your code. This is using `canvas` so there will be a js file where the color of the element created on click is defined. You will be able to change the color there. – Claire Oct 17 '17 at 18:11
  • https://pastebin.com/GmjxfQXz – obiboke Oct 17 '17 at 18:24
  • 3
    Please put all relevant information in the question itself. We're not going to visit external sites. Also see [ask] – glennsl Oct 17 '17 at 18:54
  • https://stackoverflow.com/questions/1470214/change-bullets-color-of-an-html-list-without-using-span – Paulie_D Oct 17 '17 at 21:31

1 Answers1

0

ul {list-style: none;}
li::before {
  content: "• ";
  color: red;
  font-size:20px;
  vertical-align:middle;
}
<ul>
  <li>test1</li>
  <li>test1</li>
  <li>test3</li>
</ul>
Farhad Bagherlo
  • 6,725
  • 3
  • 25
  • 47