Okay…….backup your css first.
There is a spacing issue. I added bullets, but they were hidden due to an overlap, so this sorts that too.
#nav ul {
color: #777;
font-weight: bold;
list-style-type: none;
margin: 0;
padding-left: 3px; <—————-make that 16px
text-transform: lowercase;
}
#nav ul li {
font: italic normal 110% ‘Toxica’, Times New Roman, Times, serif;
letter-spacing: 0.1em;
margin-top: 10px;
padding-bottom: 2px; /*border-bottom: dotted 1px #ccc;*/
list-style:disc; <————–add this line
}
#nav ul ul li {
border: 0;
font: normal normal 70%/115% ‘Lucida Grande’, ‘Lucida Sans Unicode’, Verdana, sans-serif;
letter-spacing: 0;
margin-top: 0;
padding: 0;
padding-left: 12px;
list-style:lower-greek; <———–add that line
}
I know that last one isn’t a bullet. It’s so you can see what to alter if you don’t want the headings to be bulleted.
You may need to alter the 16px to suit, but do backup first, and this isn’t exactly what you are after, post back ??