vote up 1 vote down star

Hi

In Firefox/Safari/Chrome/Opera - the search bar and 4 sliders (from the page linked above) are all on 1 row.

But in IE 6/7/8, the sliders are on a new row.

Anyone know what's wrong with my CSS for IE 6/7/8 to be creating a cartridge return with the other browsers do not.

Many thanks in advance

flag

75% accept rate
Try adding a white-space: nowrap; – meep Aug 16 at 17:47
@meep, where would I add "white-space: nowrap"? to the BODY tag? – GeorgeG Aug 16 at 17:50
It's a pure guess. Try on div#search_options – meep Aug 16 at 17:51

1 Answer

vote up 2 vote down check

You have width and padding set on the cells in the table with the sliders that make the table too wide to fit.

You have specified 270px for the width of the table, but each cell is 222px wide (150px width plus 72px padding) making the table 444px instead.

As you have specified conflicting sizes, different browsers will have different ways of dealing with it.

link|flag
Thanks @Guffa, any suggestion on what I should set the widths to be. Many thanks – GeorgeG Aug 16 at 18:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.