I see, it shows up differently because its inside the primary sidebar, and the primary sidebar assigns this code when that particular widget is in place –
`.sidebar.widget-area ul li,
#footer-widgets .widget-area ul li {
background: url(images/arrow-right.png) no-repeat 0 7px;
list-style: none;
margin: 0 0 7px 3px;
padding: 0 0 5px 15px;
word-wrap: break-word;
}`
So you can add this to your style.css file and it should fix it for that section –
`.widget-wrap ul li {
background: url(images/arrow-right.png) no-repeat 0 7px;
list-style: none;
margin: 0 0 7px 3px;
padding: 0 0 5px 15px;
word-wrap: break-word;
}`