Hi Sanjeev,
How could i resize the Woocommerce Book Now Button? I cannot find it in Customizing/Woocommerce.
Thanks!
Hi Sanjeev,
How could i resize the Woocommerce Book Now Button? I cannot find it in Customizing/Woocommerce.
Thanks!
Hello,
The BOOK NOW button takes size from style.css file and doesnt have customizer option for resizing it. You can add your custom size by adding the CSS below:
.btn.btn-lg, .woocommerce a.btn-lg.button, .woocommerce input.btn-lg.button, .woocommerce button.btn-lg.button {
min-width: 345px;
}
In the CSS above, change 345px to your preferred size.
Thank you