• Resolved thuc

    (@thuc)


    hello,

    the width of the calendar does not fit to the width of my widget. i followed your instructions from here from a similar reported issue but it did not work.

    also, the widget should be elongating the background of the sidebar with white space so that it looks like it’s within the sidebar. however, it doesn’t do that and looks like it is floating instead.

    please help.
    thanks.

    http://ww.wp.xz.cn/extend/plugins/booking/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter thuc

    (@thuc)

    here’s my website
    http://crammingcs.com

    Plugin Author wpdevelop

    (@wpdevelop)

    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!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘widget width and background problem’ is closed to new replies.