Hello ladytike
Ok. Maybe a little tutorial about what is a list and a nested list will be helpful for you.
As you can see, in your site, on the left column you have a list of page.
Basically, in html, to display such a list, you need this kind of code :
<ul> (means start the list)
<li>item 1</li> (li = list item)
<li>item 2</li>
<li>item 3</li>
</ul> (means close the list)
The way this list is displayed is configured in your stylesheet, the .css file. In yours, as you already edited it define houw “ul” and “li” will look like :
ul {margin:0px; padding:8px 0px 0px 1px; list-style:none; line-height:14px;}
li {padding-left:11px; background:url(images/arrow_2.gif) top left no-repeat;}
li a {color:#3E3E3E; text-decoration:none;}
li a:hover {text-decoration:underline;}
The two last one is for list elements when they are a link…
BUT… Some time, like in your case for the sub page, you can have a list in a list, what we call a nested list :
<ul> (means start the list)
<li>item 1</li> (li = list item)
<li>item 2</li>
<ul> (we open a nested list, a list in a list)
<li>item 2.1</li>
</ul> (we close the nested list)
<li>item 3</li>
</ul> (means close the list)
What happens here, is that your li and ul configured in your css stylesheet WILL NOT be used for the nested list… the “ul” of the nested list is not only a “ul”… but a “ul ul”… ?? Also, the “li” of the nested list is not only an “li”… It’s a “ul ul li” :-))
Funny no ?
So, in your stylesheet, just under the ul and the li already configured, just add this :
ul ul {margin:0px; padding:8px 0px 0px 1px; list-style:none; line-height:14px;}
ul ul li {padding-left:11px; background:url(images/arrow_2.gif) top left no-repeat;}
ul ul li a {color:#3E3E3E; text-decoration:none;}
ul ul li a:hover {text-decoration:underline;}
Except for the “ul ul” and “ul ul li” It is identical to the ul and li you aleready had… So the “nested list” will appears the same than the other list elements… You can now adjust them, with the padding, margin, etc…
Hope this can help you.
S.