Title: Width and background problem
Last modified: August 21, 2016

---

# Width and background problem

 *  Resolved [jeogonz](https://wordpress.org/support/users/jeogonz/)
 * (@jeogonz)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/width-and-background-problem/)
 * Hi
 * I have a problem with the width and background on my website
    [http://hotel-challans.fr/#reservation](http://hotel-challans.fr/#reservation)
 * I know where it com’s from :
 * in datepick-inline i have an element style width of 0px
 * `<div class="datepick-inline" style="width: 0px;">`
 * If i change style=”width: 0px; to style=”width: 245px; with firebug it work’s
   fine
 * I didn’t find where i can modify it in the source code?????
 * Can you help me please
 * [http://wordpress.org/plugins/booking/](http://wordpress.org/plugins/booking/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [wpdevelop](https://wordpress.org/support/users/wpdevelop/)
 * (@wpdevelop)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/width-and-background-problem/#post-3981810)
 * Hello.
    The problem is not with background. You was set the option “Unavailable
   days from today:” as 31 at the General Booking Settings page, so thats why the
   days in the August is not available and you are see the black background. Please
   send this option to 0, so then you will be able to select the dates during August
   2013.
 * Also you are still have some CSS conflicts with the
    [http://hotel-challans.fr/wp-content/themes/simplekey/css/general.css](http://hotel-challans.fr/wp-content/themes/simplekey/css/general.css)
   This CSS file is override some CSS attributes. For example the previous/next 
   month links is not showing correctly, because of that.
 * 1) For fixing of that issue, please open this file:
    [http://hotel-challans.fr/wp-content/plugins/booking/css/skins/standard.css](http://hotel-challans.fr/wp-content/plugins/booking/css/skins/standard.css)
 * Find this code at line 162:
 *     ```
       .calendar-links {
         float: left;
         height: 15px;
         margin-bottom: -35px;
         padding: 5px 0;
         position: relative;
         z-index: 0;
       }
       ```
   
 * and replace it to this code:
 *     ```
       .calendar-links {
         float: left;
         height: 15px;
         margin-bottom: -35px;
         padding: 5px 0;
         position: relative;
         width: 100%;
         z-index: 0;
       }
       ```
   
 * 2) Then open this file: [http://hotel-challans.fr/wp-content/plugins/booking/css/client.css](http://hotel-challans.fr/wp-content/plugins/booking/css/client.css)
 * at line: 207
 * find this code:
 *     ```
       .datepick-inline {
         margin-bottom: 10px;
       }
       ```
   
 * and replace it to this code:
 *     ```
       .datepick-inline {
         margin-bottom: 10px;
         width: 285px !important;
       }
       ```
   

Viewing 1 replies (of 1 total)

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

 * ![](https://ps.w.org/booking/assets/icon-256x256.gif?rev=3335907)
 * [Booking Calendar](https://wordpress.org/plugins/booking/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/booking/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/booking/)
 * [Active Topics](https://wordpress.org/support/plugin/booking/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/booking/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/booking/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [wpdevelop](https://wordpress.org/support/users/wpdevelop/)
 * Last activity: [12 years, 10 months ago](https://wordpress.org/support/topic/width-and-background-problem/#post-3981810)
 * Status: resolved