Quote Originally Posted by gjh42 View Post
For the alignment, you will need to change the list-style from inside to outside, and then give the list items more left margin.
Code:
#categories ul a {/*top categories*/
    display: list-item;
    list-style: disc outside url(../images/bullet1.gif);/*change to list-style: none; to remove bullet*/
    background: no-repeat;
    border: none;
    margin: 0 0 0 2.3em; /*adjust to taste*/
    padding: 0;
    }
Repeat for subcategories. Note - the margin might need to be applied elsewhere - I haven't tested this yet.
When I do this all that happens is it pushes the bullet to the left. It does not align the two lines of text up with each other.

Also, I was wondering. When you are using the option to hide the top category when viewing a subcategory. Why does the top category comes back when you go to view one of the products? Is there a way to still hide the top category when you are viewing the products?