Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter Cashwig

    (@cashwig)

    here: you can look on my site

    Plugin Author wpdevelop

    (@wpdevelop)

    Hello.
    It’s seems like some CSS conflict with your theme.
    Please send the link to the page with this booking form, then I will check and help you to fix this issue.
    Kind regards.

    Thread Starter Cashwig

    (@cashwig)

    http://goman-ferienwohnungen.de/bergheim/patricia/
    this page. you must scroll down at the end ot the page

    Thread Starter Cashwig

    (@cashwig)

    Oh…it seems like it is the browser!

    Doesnt firefox work?

    Plugin Author wpdevelop

    (@wpdevelop)

    Hello.
    Please open this file http://goman-ferienwohnungen.de/wp-content/plugins/booking.personal.5.4.3/css/client.css?ver=1.1

    and add to the bottom of that file this code:

    .booking_form_div select,
    .booking_form_div textarea,
    .booking_form_div input[type="text"] {
       font-size: 1.1em !important;
       padding: 5px 10px  !important;
       box-sizing: content-box !important;
    }

    Kind Regards.

    Thread Starter Cashwig

    (@cashwig)

    where is that file?

    Plugin Author wpdevelop

    (@wpdevelop)

    Hello.
    This file client.css inside of the /wp-content/plugins/booking.personal.5.4.3/css/ folder.

    You can open the WordPress > Plugins > Editor menu.
    Then select the Booking Calendar plugin to edit.
    And at the right side of this page find this client.css file.
    Then add to the bottom of this file that code, from previous comment, and update the file.

    Clear the browser cache and test your front-end page with booking form.
    Kind Regards.

    Thread Starter Cashwig

    (@cashwig)

    hey, it doesn’t wok i updated the file and cleaned the cache of my browser. it works not in firefox..

    Plugin Author wpdevelop

    (@wpdevelop)

    Hello.
    You was made mistake in adding that code.
    You was removed last closing } symbol.

    Currently you are having this code:

    @media (max-width: 782px) {
        .wpdevbk input[type="text"],
        .wpdevbk select{
            font-size: 1.1em;
            height: 28px;
            padding: 4px 8px;
        }
    
    .booking_form_div select,
    .booking_form_div textarea,
    .booking_form_div input[type="text"] {
       font-size: 1.1em !important;
       padding: 5px 10px  !important;
       box-sizing: content-box !important;
    }

    But you need to have this code:

    @media (max-width: 782px) {
        .wpdevbk input[type="text"],
        .wpdevbk select{
            font-size: 1.1em;
            height: 28px;
            padding: 4px 8px;
        }
    }
    .booking_form_div select,
    .booking_form_div textarea,
    .booking_form_div input[type="text"] {
       font-size: 1.1em !important;
       padding: 5px 10px  !important;
       box-sizing: content-box !important;
    }

    Please replace it carefully.
    Kind Regards.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Cant booking’ is closed to new replies.