Hi,
sorry for that simple, probably stupid question, but I don't get it my own list styles to work. I would like to create some list styles with different bullet types, without overwriting CORONA's own standard list style.
I have these CSS:
#squarelist ul li {
background-image: url("http://xxx.de/wp-content/uploads/sites/2/2013/03/list1.png");
background-position: 0 3px;
background-repeat: no-repeat;
padding-left: 20px;
list-style-position: outside;
list-style-type: none;
margin-left: 0px;
}
and this in my post:
<ul id="squarelist">
<li><a href="#">Item one</a></li>
<li><a href="#">Item two</a></li>
<li><a href="#">Item three</a></li>
<li><a href="#">Item four</a></li>
<li><a href="#">Item five</a></li>
This shows me still the standard bullets instead of my own image (the image path is right):

When I check this with Firebug, then it uses always the CORONA standard list styles for lists and ignores my own.

Could you please tell me, how to successful have list styles with own bullet images in CORONA?
Thanks a lot for any help.














