-----Original Message-----
Can I use more than one type of bullet on a page?
I have tried setting up styles for lists and I am unable
to use more than one bullet style per page.
Sure. Configure the "default" list appearance using the
ol or ul selector, then use a "ul." class slector for
each additional appearance you want. Here's an example:
<html>
<head>
<title>Lists</title>
<style>
<!--
ul { list-style-type: square }
ul.round { list-style-type: circle }
-->
</style>
</head>
<body>
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
</ul>
<ul class="round">
<li>animal</li>
<li>vegetable</li>
<li>mineral</li>
</ul>
</body>
</html>
Jim Buyens
Microsoft FrontPage MVP
(e-mail address removed)
http://www.interlacken.com
Author of:
*------------------------------------------------------*
|\----------------------------------------------------/|
|| Microsoft Office FrontPage 2003 Inside Out ||
|| Microsoft FrontPage Version 2002 Inside Out ||
|| Web Database Development Step by Step .NET Edition ||
|| Troubleshooting Microsoft FrontPage 2002 ||
|| Faster Smarter Beginning Programming ||
|| (All from Microsoft Press) ||
|/----------------------------------------------------\|
*------------------------------------------------------*