Hi there
I want to use the “Star list” but it seems, that there is an error. Instead displaying a unsorted list with a star at the left, it shows: DOT, STAR, TEXT.
I had a look at the “typo.css” and there is something missing.
Original:
/* Star list */
ul.star li {
background: url(../images/icon-star.gif) no-repeat 0px 5px;
margin-left: 15px;
padding: 2px 0 2px 20px;
}
I completed:
/* Star list */
ul.star {
list-style: none;
}
ul.star li {
background: url(../images/icon-star.gif) no-repeat 0px 5px;
margin-left: 15px;
padding: 2px 0 2px 20px;
}
but it still does not work!
Please let me know, how I could get the list working properly!
Thanks in advance