Add the second level list styles as li li
div.navpro li { margin: 0; padding: 1px;
list-style-image:url('../images/arrow1_blue); }
div.navpro li li { margin: 0; padding: 1px;
list-style-image:url('../images/arrow2_red); }
--
_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________
"AV" <(E-Mail Removed)> wrote in message news:1D72ED6E-D19B-4F93-8655-(E-Mail Removed)...
| Hi,
|
| I have an external stylesheet which has multiple DIVs defined for different
| sections of my site. Each div has ul and li defined with image bullets. I
| would like to make a simple, 2-level list (not dynamic) that has a second
| level indented below the first that uses a different image bullet.
|
| Is there a way to define more than one li for a div with different margins
| and bullet styles? And if so, how do I call it within the HTML? I don't
| know how to code it. Here's an abbreviated version of 2 div in the
| stylesheet:
|
| div.navpro ul {
| margin-top: 0;
| margin-bottom: 0;
| margin-left: 30px;
| padding: 0;
| }
| div.navpro li {
| margin: 0;
| padding: 1px;
| list-style-image:url('../images/arrow1_blue);
| }
|
| div.navcon ul {
| margin-top: 0;
| margin-bottom: 0;
| margin-left: 30px;
| padding: 0;
| }
| div.navpro li {
| margin: 0;
| padding: 1px;
| list-style-image:url('../images/arrow1_red);
| }
|
| Each of these DIVs has additional formatting that I did not include here.
| The goal is to have a second level li for each div with different pading and
| list-style-images.
|
| Thanks for your help!