Apr 11, 2007 #1 lhaworld Technical User Joined Jul 2, 2002 Messages 24 Location US Hi, How can I use the unordered list option without the indent? (left margin aligned) Thanks!
Apr 11, 2007 #2 traingamer Programmer Joined Jun 18, 2002 Messages 3,270 Location 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 Joined Jul 2, 2002 Messages 24 Location US thank you. Upvote 0 Downvote