Quote:
Originally Posted by FunkeXMix
Hello community!
This thread is about removing indents completely from list items. The following CSS code manages to reduce the indenting, but how do you remove it completely? Anybody know?
Code:
ul, ol,
li {
margin: 0%;
padding: 0%;
}
|
You could try...
Code:
ul, ol,
li {
margin: 0;
text-indent: 0
}