View Single Post
Old 02-12-2013, 11:55 AM   #2
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,837
Karma: 146918083
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by FunkeXMix View Post
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
}
JSWolf is offline   Reply With Quote