You still have this demo rule in your stylesheet_categories_dressing.css:
Code:
/*example for custom category group styling*/
ul#catGroup48 {
border: none;
background: none;
position: relative;
left: -1.3em;
width: 200px;
top: 0.2em;
}
Delete it, and if you want the categories to start farther to the left than other sidebox links, add a rule like
Code:
#categoriesContent {margin-left: -21px; width: 200px;}
Also delete these rules:
#catGroup45 {
left: -21px;
position: relative;
top: 8px;
}
.catLinks {
left: -21px;
position: relative;
}
The 0.4em bottom margin in this rule is what gives the space below Deluxe Toy Dolls; change it to 0 to eliminate the extra space.
Code:
#categories ul {/*top category lists*/
list-style: none;
background: none;
border: none;
margin: 0 0 0.4em 0;
padding: 0;
}
Bookmarks