scrupul0us wrote:why do that and call it everytime?
li {
padding-left: 0px;
}
You might not want every list to do that :p
I only want it on the left panel, so I did this
.leftpanel ul {
padding-left: 0;
}
<div class='leftpanel'>
<ul>
<li>List here</li>
</ul>
</div>
😉
And it works just fine 🙂