Hi I am using the WC Booking plugin and I’m having trouble with the “BOOK NOW” button. All my products will be bookable products, is there a way I can change the color and size of the “BOOK NOW” button in the WC booking plugin?
Hello Valerie,
The BOOK NOW button for Woocommerce Bookings should show normally if you imported the modern theme. Or, you can copy paste the CSS below inside your appearance >> customize >> custom css and js >> custom CSS box:
.wc-bookings-booking-form-button {
border: none;
font-size: 30px;
line-height: 38px;
font-weight: 300;
letter-spacing: 1px;
color: #fff;
padding: 10px 0;
margin: 30px 0;
-webkit-transition: all .3s linear;
transition: all .3s linear;
outline: none;
text-transform: uppercase;
}
It worked. Thanks!
…
Thank you Valerie for taking time to confirm back. Good Day!