Thread Starter
thuc
(@thuc)
Hello.
You are need to open this file: http://crammingcs.com/wp-content/plugins/booking/css/client.css
and make these fixes:
1) Find this code on line 97:
.widget_wpdev_booking, div#datepick-div {
padding: 0;
vertical-align: top;
}
and make this modification:
.widget_wpdev_booking, div#datepick-div {
float: none !important;
padding: 0;
vertical-align: top;
}
2) Find this code on line 115
.widget_wpdev_booking .datepick-inline, div#datepick-div {
width: 240px !important;
}
and replace it to this:
.widget_wpdev_booking .datepick-inline, div#datepick-div {
width: 245px !important;
}
3) Now find this code on line: 119
.widget_wpdev_booking .datepick-header, div#datepick-div .datepick-header {
width: 183px !important;
}
and replace it ot this code:
.widget_wpdev_booking .datepick-header, div#datepick-div .datepick-header {
width: 245px !important;
}
Thread Starter
thuc
(@thuc)
thank you, that worked great!