Collapsible Lists, How to create without bullets or numbers?

J

Jeff

Hi, I've built a collapsible list, but I don't want it to be numbered or to
have little squares or cirlce bullets. Here's an example of how I'd like it
to look. Thanks!

Jeff

Sponsors
Premier Sponsors
Other Sponsors
How to Sponsor
 
J

Jon Spivey

Hi Jeff,

In the head of your page
<style type="text/css">
li{
list-style-type:none;
}
</style>
 
Top