• Resolved mrblues

    (@mrblues-1)


    hi, which CSS code would add some space between the months so those are not attached to each other ?

    cheers

    mrblues

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author wpdevelop

    (@wpdevelop)

    Hello.
    Please make this fix.

    Please open this file ../wp-content/plugins/booking/css/client.css

    ( you can check how to edit files in WordPress menu in this article https://wpbookingcalendar.com/faq/how-edit-file-in-wp-menu/ )

    then add this code to the bottom of this file:

    
    div.cal_month_num_2 .datepick-one-month {
        width: 49%;
        float: left;
    }
    div.cal_month_num_2 .datepick-one-month.datepick-new-row{
        margin-right:2%;
    }
    

    Please do not forget to clear browser cache before testing these changes.

    Kind Regards.

    • This reply was modified 6 years, 7 months ago by wpdevelop.
    Thread Starter mrblues

    (@mrblues-1)

    that was beautiful, works like a charm 🙂

    only downside is that it has to be done again after next update?

    Plugin Author wpdevelop

    (@wpdevelop)

    Yes, you need to make this fix after update of plugin.
    But you can insert that code into the some other css file, for example in style.css file of your theme, so it’s have to work, as well.
    Kind Regards.

    Thread Starter mrblues

    (@mrblues-1)

    ok, would it work if I put the code on a plugin like a Code Snippets?

    Plugin Author wpdevelop

    (@wpdevelop)

    Hello.
    I do not sure, but you can try.
    You will be need to insert something like this:

    <style type="text/css">
     div.cal_month_num_2 .datepick-one-month {
        width: 49%;
        float: left;
    }
    div.cal_month_num_2 .datepick-one-month.datepick-new-row{
        margin-right:2%;
    }
    </style>
    Thread Starter mrblues

    (@mrblues-1)

    hey man, your answers are coming like 5 seconds after I post something, never seen anyone be that fast! 🙂

    Fast try with Code snippets ended with error so I use your original solution and be done with that.

    Many thanks!

    mrblues

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

The topic ‘Space between months’ is closed to new replies.