Help with UL background and LI image

URL: http://tinyurl.com/23gbg8p

In the left sidebar menu, how can I make that dotted border extend all the way across so that it’s also below the bullet image?

Thank you SO much!

It should work if you add list-style-position to your li:


ul.sidebar-menu li {
-moz-background-clip:border;
-moz-background-origin:padding;
-moz-background-size:auto auto;
background-color:transparent;
background:url("images/dotted-border.png") left bottom repeat-x scroll;
font-weight:bold;
list-style-image:url("images/bullet.png");
list-style-position:inside;
padding: 5px 0 0 12px;
}