I would like to have these two buttons side by side with a little bit of space. The buttons are now positioned below each other.
<div class='d-flex align-items-center mt-3 mt-md-5 flex-wrap'> <a href="index.php?Itemid=123" class="btn btn-primary me-4 my-2"> Meld je nu aan! </a> </a> </div> <div class='d-flex align-items-center mt-3 mt-md-5 flex-wrap'> <a href="index.php?Itemid=123" class="btn btn-primary me-4 my-2"> Meld je nu aan! </a> </a> </div>
rborst Hi Add this code in custom css
.acm-features.style-2 .info-desc {display:flex;}
Ninja Thank you, it work.
Thank you, it works. I just want the buttons higher.
When I add this in the css code, the buttons on the mobile version go over the text:
.acm-features.style-2 .info-desc { display: flex; margin-top: -70px; }
rborst You can use Media queries example this code work above 468px width
@media(min-width:468px){.acm-features.style-2 .info-desc { display: flex; margin-top: -70px; }}