Question : CSS Bullets

Hello Experts,

I'm working on a component for a website that some one else had designed, using 3-4 .css files, which are referenced all one by one at the top of the html code.

I'm not a css expert, but my code is below, but my result is:

line1
line2
line3

without bullets.  How can I fix this?  Perhaps, after the css files are referenced, I can add a <style> block to overwrite just the <ul><li> properties?

Thanks.
1:
2:
3:
4:
5:
6:
7:
<ul>

   <li> line1 </li>
   <li> line2 </li>
   <li> line3 </li>

</ul>

Answer : CSS Bullets

Sure replace
div#TermsandCond ul li
{
padding:2px;
text-align:left;
}
with the below,
1:
2:
3:
4:
5:
6:
7:
8:
div#TermsandCond ul li
{
margin: 0px;
padding: 0px;
text-indent: -1.5em;
margin-left: 1.5em;
text-align:left;
}
Random Solutions  
 
programming4us programming4us