• Resolved speedy_snail

    (@speedy_snail)


    URL: /bookings/?action=reserve

    <input name="contactState" type="text" id="contactCity" value="" maxlengtr="255">

    Should read:

    <input name="contactState" type="text" id="contactCity" value="" maxlength="255">

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter speedy_snail

    (@speedy_snail)

    Actually, I’ve just realised that it should read;

    <input name="contactState" type="text" id="contactState" value="" maxlength="255">

    Also note, that this field doesn’t display correctly on Chrome browser on a Mac.

    Thread Starter speedy_snail

    (@speedy_snail)

    Changing this in /wp-content/plugins/book-a-room/css/bookaroom_day.css?ver=4.9.8:

    @media screen and (max-width: 960px)
    #formRow input, #formRow textarea {
        width: 90%;
    }

    To this:

    @media screen and (max-width: 960px)
    #formRow input, #formRow textarea {
        width: 100%;
    }

    fixes the display issue.

    Thread Starter speedy_snail

    (@speedy_snail)

    I was wrong, due to another display error, it’s best to completely remove the width for:

    @media screen and (max-width: 960px)
    #formRow input, #formRow textarea {
    <del datetime="2018-08-09T00:58:19+00:00">    width: 100%;</del>
    }

    And this still fixed the display issue for this issue.

    A new version is going up that adds all of this. Thanks for your help!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Step 5 – maxlength typo for state field’ is closed to new replies.