Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter adamrf

    (@adamrf)

    Thank you that did help me to fix it! There was some issues with the desktop display but I added more CSS to help fix this. If anyone want’s to try the CSS it’s

    /* Center the booking form on desktop */
    .rtb-booking-form {
    width: 75%;
    margin: 0 auto;
    margin-top: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    }

    /* Form fields layout */
    .rtb-text.date,
    .rtb-text.time,
    .rtb-text.name,
    .rtb-text.email {
    margin-right: 1em;
    margin-bottom: 1em;
    display: inline-block;
    text-align: left;
    }

    /* Mobile responsive adjustments / @media screen and (max-width: 768px) { .rtb-booking-form { width: 90%; / Adjust form width on mobile */
    }

    .rtb-text.date,
    .rtb-text.time,
    .rtb-text.name,
    .rtb-text.email {
    display: block;
    margin-right: 0;
    margin-bottom: 1em;
    }
    }

    I also wanted to ask. In the notification setting under “Admin Email Address” can I use multiple emails separated with a comma or?

    • This reply was modified 1 year, 4 months ago by adamrf.
    Thread Starter adamrf

    (@adamrf)

    Sure you can see it here. Do you think you might be able to provide some CSS to help this look better?

    Thank you

    Adam

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