If you are using the Kubrick default theme in WordPress, you can remove the ">>" characters from your sidebar by commenting out some code in your stylesheet.
This is the offending code:
.entry ul li:before, #sidebar ul ul li:before {
content: "\00BB \0020";
}
Comment it out like this...
.entry ul li:before, #sidebar ul ul li:before {
/* content: "\00BB \0020"; */
}
Thanks Matt!