HTML
<div class="dlrs">
<div id="listItems">
<div id="clrCode" class="colorBlock"
style="background-image: url("/media/images/orange.png"); background-position: center center; background-repeat: no- repeat;">
</div>
<span>0 pts ( > 20 min)</span>
<ul id="dlrsList">
<li id="itmDlrName">Crosstown Auto Centre</li>
<li id="itmDlrName">Dartmouth Chrysler Jeep Dodge</li>
<li id="itmDlrName">Grande Prairie Chrysler Jeep Dodge</li>
</ul>
</div>
</div>
CSS
.dlrs {
//display: inline-block;
width: 630px;
margin: 20px 0 20px 20px;
font-weight: @bldTxt;
font-size: 14px;
#listItems {
width: 200px;
float: left;
display: inline-block;
span {
position: relative;
bottom: 16px;
left: 20px;
}
#dlrsList {
width: 100%;
text-align: justify;
#itmDlrName {
padding: 0px;
list-style-type:disc;
position: relative;
left: 20px;
max-width: 160px;
font-size: 12px;
}
}
}
}
The issue at hand revolves around achieving bullet points on my li
elements. Despite various attempts to override the CSS setting that removes the bullets using none
, I have not been successful. Even with increased specificity and the use of !important
, the desired effect is not achieved. However, when altering the settings in FireBug temporarily, the expected disc
property for li
works correctly.
Is there a workaround that can be implemented in this situation?