Strange issue with pagination in IE

Hello chaps,

Got a couple of problems in IE7 at the moment… if you look at this page in FF you will see the “sort by” drop-down and pagination to left-hand side. In IE7 the “sort by” drop-down is on the right and pagination doesn’t even show!

Not quite sure what’s going on at the moment, any ideas? :slight_smile:

I would suggest giving titleProductList a fixed width and float it right. I suspect the dropdown is sitting under that element.

Hi, it’s just being hidden :slight_smile:

On the sort by div, you set that to be float:left. HOwever, on an inner div you set a class .FloatRight so you now have a right float inside of a left float. IE7 doesn’t like that.

You could either

  1. Remove the .FloatRight class on that element (the one that also has hte .SortaBox class)
  2. Manually override the float:right that is set

.titleProductList2 .SortBox{float:left;}