| brian on Feb 20, 2007 at 3:12:30 AM (# 1) there's a style, list-style-type, that allows you to specify the bullet as none.
you could use a class such as:
ul.nobullet li { list-style-type:none; }
or you could just do the following:
ul ul li { list-style-type:none; }
Either will do the job...I think...:) webdesign on Feb 21, 2007 at 3:30:27 AM (# 2)Thanks Brian! It works fine!!!
|