Alex Sleiborg
Alex Sleiborg

Reputation: 105

Problems with jQuery UI datepicker in chrome

I've got a problem with jQuery UI datepicker it won't display correctly in chrome, all other browser it's displayed correctly. Im not quite sure when this started, because it worked when I first added it to the website.

And I tried a lot of CSS tweaks but nothing seems to work :O

This is the url http://jomfruanegade.dk/

Does anyone know what the problems is??

Upvotes: 0

Views: 825

Answers (1)

Rob
Rob

Reputation: 5588

Remove float: left from these two places:

table.ui-datepicker-calendar > thead { ... }
table.ui-datepicker-calendar > thead th { ... }

Also remove the height: 40px; from:

table.ui-datepicker-calendar > tbody td { ... }

Addition:

Add verticle-align: bottom; to:

table.ui-datepicker-calendar > tbody td { ... }

Upvotes: 1

Related Questions