twilitegxa Posted June 29, 2009 Share Posted June 29, 2009 Is there an easier way to display no bullets in my unordered list without naming a class with the list-style-type: none and then adding the class to every bullet point? That will take quite a while, but I figured there must be an easier way. Here is my list: <html> <head> <title></title> <script type="text/javascript" src="simpletreemenu.js"> /*********************************************** * Simple Tree Menu- © Dynamic Drive DHTML code library (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code ***********************************************/ </script></head> <body> <ul id="treemenu1" class="treeview"> <li>Home</li> <li>Getting Started <ul> <li>Chapter 1: Introducrion <ul> <li>The Magical Girl Genre</li> <li><em>Bishojo Senshi Sailormoon</em></li> <li>Sailor Moon Series Background <ul> <li>Season One Summary</li> <li>Season Two Summary</li> </ul> </li> <li>What Is Role-Playing? <li>An Example Of Play <li>Character Size Relationship </ul> </li> <li>Chapter 2: Character Creation <ul> <li>Character Creation Flowchart</li> <li>Step 1: GM Discussion</li> <li>Step 2: Character Outline</li> <li>Step 3: Assign Stats</li> <li>Step 4 Character Attributes <ul> <li>Scout/Knight Sub-Attributes</li> <li>Negaverse/Dark Sub-Attributes</li> <li>Neutral Attributes</li> </ul> </li> <li>Step 5: Character Defects</li> <li>Step 6: Derived Values <ul> <li>Combat Value</li> <li>Health Points</li> <li>Energy Points</li> </ul> </li> <li>Step 7: Background Points</li> </ul> <li>Chapter 3: Game Mechanics <ul> <li>Introduction</li> <li>Combat Flowchart</li> <li>Dice, Stat Checks, & Combat Rolls <ul> <li>Stat Checks</li> <li>Combat Dice Rolls</li> </ul> </li> <li>Taking Action</li> <li>Combat <ul> <li>Initiative</li> <li>Attack</li> <li>Non-Combat Actions</li> <li>Defend</li> <li>Deliver Damage</li> </ul> </li> <li>Weapons And Armor</li> <li>Recovering Lost Points <ul> <li>Health Points</li> <li>Energy Points</li> </ul> </li> </ul> <li>Chapter 4: RPing In A SM Universe <ul> <ul> <li>Japan And Tokyo</li> <li>Maps Of Japan And Tokyo</li> <li>Places In Sailor Moon</li> <li>The Moon Kingdom <ul> <li>The Kingdom Of Light</li> <li>Members Of The Royal Court</li> <li>The Planetary Kingdoms</li> </ul> </li> <li>The Negaverse <ul> <li>What Is Known</li> <li>Speculation On Unknown</li> </ul> </li> <li>Planet Of Makaiju <ul> <li>Campagin & Setting Questions</li> </ul> </li> <li>Crystal Tokyo <ul> <li>A Crystal Tokyo Campaign</li> </ul> </li> <li>Nemesis, The Dark Moon</li> <li>School Life In Japan</li> <li>Advice For The Player</li> </ul> </ul> </ul> </li> <li>Create Character</li> <li>Members</li> <li>News And Events</li> <li>Glossary</li> <li>Battle Board</li> <li>Battle Chat Lounge</li> <li>About Us</li> <li>Newsletters</li> <li>Invite Friends</li> <li>Discussion Board</li> <li>FAQ</li> <li>Contact Us</li> </ul> <script type="text/javascript"> //ddtreemenu.createTree(treeid, enablepersist, opt_persist_in_days (default is 1)) ddtreemenu.createTree("treemenu1", true) ddtreemenu.createTree("treemenu2", false) </script> </li> </ul> </body> </html> Quote Link to comment Share on other sites More sharing options...
haku Posted June 29, 2009 Share Posted June 29, 2009 ul {list-style:none} should do it. Quote Link to comment Share on other sites More sharing options...
twilitegxa Posted June 29, 2009 Author Share Posted June 29, 2009 That did it, thanks :-) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.