views:

92

answers:

2

I'm using a javascript date selector within a HTML form, and it's displaying as it should in the browsers I've tested in (Firefox 3, Opera 9, Chrome, IE7) but it displays really large in IE6.

Here's the page I'm talking about - http://marketplace.prettypollution.com/kids-club

Any ideas?

A: 

its hard to change it to jquery datepicker that support cross-browser ? links :

http://docs.jquery.com/UI/Datepicker

http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/

Haim Evgi
+1  A: 

The table that the date selector is in has width:100% getting applied to it by the

table {
  width: 100%; 
}

selector in your screen.css file.

If you make the width of the table for the date picker table (the one with class="date") some fixed value, or auto, it will look fine in IE6.

jimr
Yeah, i'm pretty sure that's the problem.
Luca Matteis