I like to set in the correct way parent LI and child DIV without bullet images. How to eliminate bullet image even parent DIV has defined LI bullets all the time?
When I add new child DIV's it will still show bullet images.
Parent DIV:
#parent li {
background: url("../bullets/bullet.gif") no-repeat scroll 0 -5px transparent;
list-style-type: none;
margin-top: 4px;
padding-bottom: 4px;
padding-left:7px;
padding-right: 7px;
text-align: left;
}
Child DIV:
#child li {
display: block;
padding: 3px 6px 0 0;
list-style: none;
}
Can be some setting to eliminate bullets inside child DIV?
Issue is that I have set list-style: none; but still show parent bullet.