Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Unordered list option

Status
Not open for further replies.

lhaworld

Technical User
Jul 2, 2002
24
US
Hi,

How can I use the unordered list option without the indent? (left margin aligned)

Thanks!
 
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top