List bullet issues in IE

how come when you view this page in IE(9) the bullets for the lists in the content area appear over the images to their left and not to the immediate left of the list items like they do in other browsers?

please advise. thanks in advance.

The width of your <ul> is 668px which is the entire width of the .entry-content div that it’s in

edit: make your Content ul { float: left; width: 390px; }

and make your Content img { float: left; width 247px; }

My suggestion would be to add this to your CSS:

.prodprod ul {
  overflow: hidden;
  padding-left: 20px;
}