Apr 11, 2007 #1 lhaworld Technical User Jul 2, 2002 24 US Hi, How can I use the unordered list option without the indent? (left margin aligned) Thanks!
Apr 11, 2007 #2 traingamer Programmer Jun 18, 2002 3,270 US You can use css to override the browser defaults: Code: ul, li { margin: 0; padding: 0; } li { list-style: none; } Greg "Personally, I am always ready to learn, although I do not always like being taught." - Winston Churchill Upvote 0 Downvote
You can use css to override the browser defaults: Code: ul, li { margin: 0; padding: 0; } li { list-style: none; } Greg "Personally, I am always ready to learn, although I do not always like being taught." - Winston Churchill
Apr 11, 2007 Thread starter #3 lhaworld Technical User Jul 2, 2002 24 US thank you. Upvote 0 Downvote