Hi adam,
The sizing and styling of the fields may be impacted by your theme’s styling/CSS. If you could share a link to your booking page, we could take a look and hopefully determine if that’s the case.
The default layout of the form is to be one field on top of each other. Aesthetically pleasing is probably pretty subjective, but, you might be able to alter it with some custom CSS to be closer to what you would like.
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
Hi Adam,
Thank you for providing that information. You can use the following Custom CSS to adjust the layout of the fields. You can paste it in the Site Editor styling section, or, if you are using a non-block theme, into the additional CSS section of the customizer (e.g. WP Admin Sidebar > Appearance > Customize > Additional CSS)
.rtb-booking-form {
width: 75%;
margin: 0 auto;
margin-top: 1em;
}
.rtb-text.date,
.rtb-text.time,
.rtb-text.name,
.rtb-text.email{
float: left;
margin-right: 1em;
}
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.
Hi adam,
Great, thanks for letting us know!
Yes, you can enter multiple admin email addresses into that field, separating them with commas.