I have also the same problem. I might have solved it, but there might be a better (and elegant) solutions.
to override the widget ul li values, I have added some CSS code in
Theme Options >> HTML/CSS Insert >> CSS Inserts:
//add a double angle quote and space before list name
#custom-gen ul li:before {
content: "\00BB \0020";
// or a bullet image
//list-style-image: url('somewhere/bullet.gif');
}
//left border of list
.widget ul li a:link,
.widget ul li a:visited,
.widget ul li a:active {
//border-left: none; //remove border
border-left: dotted; //or dotted instead of solid
somehow activating bullet with list-style-type or list-style-image doesn't work
.widget ul li a:link,
.widget ul li a:visited,
.widget ul li a:active {
list-style-type: circle;
//or
list-style-image: url('somewhere/bullet.gif');
}
|