bullrt

  • Thread starter Thread starter bill gee
  • Start date Start date
B

bill gee

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.
 
you can. you'll have to assign different styles to different lists, or
specify "nested" bullets within you list-style.
HTH
 
How do I specify nested?
-----Original Message-----
you can. you'll have to assign different styles to different lists, or
specify "nested" bullets within you list-style.
HTH



.
 
use cascading style sheets (css) to define the image you want to use as your
bullet or <li>.

do a search for "css bullet image' or something like that. Defining it in a
css will be amazing simple and immensely beneficial in the long run.
 
I haven't done it myself. just specifying pictures for bullets and the like
currently but from what I understand it's like this:

ul{
list-style-type: square;
list-style-image: none:
{
ul ul {
list-style-type: circle;
}
ul ul ul {
list-style-type: disc;
}

HTH
 
-----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) ||
|/----------------------------------------------------\|
*------------------------------------------------------*
 
This is the third time you've asked the same question. Believe me, it will
NOT get you MORE answers. Instead, it is more likely to p**s people off, and
make them LESS likely to answer, as it is a vilation of Netiquette. Please
read the answer to your original question in your original thread.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Big Things are made up of
Lots of Little Things.
 
Back
Top