lisaleague
6/11/2015 - 1:37 PM

From http://www.genesisframework.com/unordered-list/

.entry-content ul > li {
	list-style-type: none;
}

ul li {
  color:#333; /* set color of list item to a dark gray */
}

ul li:before {
  color:#00cc00; /* set color to green */
  content:"\2022"; /* /2022 is the numerical unicode for • */
  font-size:1.25em; /* set the font-size of the bullet if necessary. Make sure to use em or %*/
  padding-right:.25em; /* give the bullet some padding from the text Make sure to use em*/
  position:relative;
    top: 50%; /* set the vertical position of the bullet if necessary. Make sure to use em or % */
}