Within my project, the padding-left
of my item is determined by a previous stylesheet
.
We observe that there is a padding-left
set to 15px:
If I deselect the padding-left
:
The requirement is to remove the padding-left
, so I create a new css
:
.lml-list-item {
background-color:#111111;
padding-left:0px; // Setting padding-left to 0px;
}
Upon checking the html in firefox
, it appears that my css
is not being utilized:
Why isn't my css
working? Whether I position lml-list-item
before or after the class, it still fails to work.
<a href="#" class="lml-list-item item-link item-content ">
<li class="item-content lml-item-content">
<div class="item-media black"><i class="icon icon-f7"></i></div>
<div class="item-inner">
<div class="item-title">info</div>
</div>
</li>
</a>