Mirza
04/16/2025, 4:28 AMPigeon
04/16/2025, 8:37 AMhonest_mango_86659
04/17/2025, 12:32 PMKings Big
04/18/2025, 6:33 PMposition
in the buttonConfig
object in your script. Unfortunately, there's no built-in center positioning option. However, you can manually center it using CSS. Here's an example of how you could modify your CSS:
css
.vapi-btn {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
Make sure the CSS is correctly linked to your button. If you need more customization, consult the Vapi documentation or let us know for further assistance.