I have the following...
with ...
why doesn't the bullet style show ?
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.
Code:
.finstat {
margin: 0 auto;
width: 350px;
min-height: 140px;
padding: 5px 5px;
border:1px;
border-style:solid;
}
.finstat p {
text-align:center;
}
.finstat ul {
margin: 0 auto;
width:150px;
}
.finstat ul li {
padding: 0.1em 0;
color: #D9DB9C;
list-style-type: square;
}
Code:
<div class="finstat">
<ul>
<li>Employed</li>
<li>Self Employed</li>
<li>Credit Problems</li>
<li>Bankruptcy</li>
<li>IVA</li>
<li>Shared Ownership</li>
</ul>
<p>The overall cost for comparison is x% APR.<br /> The actual rate available will depend upon your circumstances. Ask for a personalised illustration.</p>
</div>
why doesn't the bullet style show ?
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.