I'm using an image for an unordered list, which works fine. The problem is, the image is also appearing in my numbered "ordered list." Here is my code for the unordered list:...and thanks in advance:
[code=css]
ul {
font-family: Arial;
font-size: 12px;
color: #424E51;
font-style: normal
line-height: 17px;
font-weight: normal;
font-variant: normal;
text-transform: none;
text-decoration: none;
background-color: #FFFFFF;
text-indent: inherit;
list-style-position: outside;
margin: 25px;
list-style-type: none;
}
li {
padding-left:15px;
background:tran sparent url(MEDIA/JPGs/bullet.gif) no-repeat;
background-position:0 7px;
}[/code]
[code=css]
ul {
font-family: Arial;
font-size: 12px;
color: #424E51;
font-style: normal
line-height: 17px;
font-weight: normal;
font-variant: normal;
text-transform: none;
text-decoration: none;
background-color: #FFFFFF;
text-indent: inherit;
list-style-position: outside;
margin: 25px;
list-style-type: none;
}
li {
padding-left:15px;
background:tran sparent url(MEDIA/JPGs/bullet.gif) no-repeat;
background-position:0 7px;
}[/code]
Comment