Hello
I have a problem with this simple example
<ul>
<li>one</li>
<li>two</li>
</ul>
which I tested successfully in a browser. Whenever I include this code in a website, then the bullets do not show up any more.
I am marking the ul with this css code:
clear:left;
padding-top:25px;
padding-left:20px;
padding-right:20px;
font-size:14px;
line-height:30px;
text-align:justify;
font-weight:bold;
text-transform:uppercase;
list-style-position: outside;
list-style:disc;
And the li with this css code:
display:block;
line-height:160%;
margin-bottom:15px;
Everything shows up as I want except this bullet which is not displayed. However, I did write list-style:disc; like you can see in the CSS code for ul tag.
Moreover, if I remove display:block; from the li's css code, then there is not break between li tags.
Any idea?
Thanks