SiteExperts.com Logo Home | Community | Developer's Paradise
User Groups | Site Tools | Site Information | Search
 Main Menu
 Forums
SiteExperts.com Forums
All Discussions

SiteExperts Feedback
The Lounge
Dynamic HTML
Site Design/ Critiques
HTML and CSS
XML Technologies
The Wireless Internet
Internet Explorer
Microsoft .NET
The Server
Technical Support

Sponsored Links

User Groups : Forums : SiteExperts : HTML and CSS :

Previous DiscussionNext Discussion
 listings <ul> with Firefox browser

Please help!

How can I create two <ul> listings within each other so that Firefox doesn't show any extra bullets (if using class property).

===============

<ul class="square_bullets">
	   <li><a href="#test1">test1</a></li>
   	   <li><a href="#test2">test2</a></li>			   
       			<ul>
				<li><a href="#test3"></a>test3</li>
				<li><a href="#test4"></a>test4</li>
			</ul> 
</ul>
=================

At this example my Firefox (ver. 1.5.0.9) browser shows square bullet and

  • bullet,  before test3 and test4

Is this possible to solve by css?

Thanks in advance!!!

Started By webdesign on Feb 20, 2007 at 2:30:41 AM

2 Response(s) | Reply

Earlier Replies | Replies 1 to 2 of 2 | Later Replies
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!!!


Earlier Replies | Replies 1 to 2 of 2 | Later Replies

To respond to a discussion, you must first logon.

If you are not registered, please register yourself to become a member of the SiteExperts.community.

User Name
Password
Copyright 1997-2004 InsideDHTML.com, LLC. All rights reserved.