#results ul {margin-bottom:20px;margin-left:auto;margin-right:auto;}
#results ul {width: 200px;float: left;}
Does anybody know why this is happening?
(look at the screenshot)
Screenshot: http://img201.imageshack.us/img201/249/ie7wv5.png
Site: http://www.swamr.com/web/
CSS: http://www.swamr.com/web/style.css
#results ul {margin-bottom:20px;
margin-left:auto;
margin-right:auto;
}
I'd try setting a static width and floating:
#results ul {width: 200px;
float: left;
}
I think IE7 is having a hard time figuring out what to do without a width and those auto margins.
That's what i liked about how it was, it resized correctly in every browser expect IE7.
Anyone have a solution without fixed with?