List Style Type Square Not Showing

I cannot get the square to show for the list items on this page. Can someone take a look and tell me what the fix is?

LINK-

Its not showing because you have put overflow:hidden on .two-column li

Yes, _Nikhil is right. Also remove display: inline, and perhaps give some left margin to bring the bullets in a bit:


.two-column li {
  float: left;
  list-style-type: square;
  margin: 0 0 5px 15px;
  width: 220px;
}

To account for the margin, change the width a bit. (Might as well use pixels, since the container has a fixed width.)

That did the trick. Thank you for the help! It is GREATLY appreciated both of you!