I would like to change the position of the button in the promo box from right to down in the middle. How ist this possible?
Hey,
Thanks for contacting us!
Please add following code to Quick CSS field in Enfold theme options > General Styling tab
.av_promobox .avia-button-right {
float: none;
}
.av_promobox .avia-button {
float: none;
position: unset;
margin-top: 0 !important;
width: 150px; /* Adjust width as needed */
margin: auto;
}
Best regards,
Yigit
Hey Yigit,
great! This works fine to me but it seems the content above the button doesn’t use the whole space of the promo box. Is there any solution to avoid the break?
Thanks in advance!
Michael
Hi Michael,
Please add following code to Quick CSS field as well
.avia-promocontent {
margin-right: 0;
}
Best regards,
Yigit
That’s great! Thank you!