Add to cart button alignment Charge theme

Hi

Im trying to align the add to cart button on the browser and mobile version (on the featured item list) of our shop i’ve tried different lines of code but none seem to work. Maybe someone has a solution

thanks

@bnbsnacks - its happening due to number of title lines, to overcome this need to set css , that leaves space between button and text if we have a single line

Share Preview Link Your Website

Do you know what I need to add?

Here’s the link to the preview

https://t617y8nmrf60437g-71689273609.shopifypreview.com

Put This Code in Your base.css

@media only screen and (max-width: 1024px) {
    .item-details-wrapper {
        display: grid;
        grid-template-rows: 75px 1fr;
    }
}
@media only screen and (max-width: 767px) {
    .item-details-wrapper {
        display: grid;
        grid-template-rows: 55px 1fr;
    }
}
@media only screen and (max-width: 410px) {
    .item-details-wrapper {
        display: grid;
        grid-template-rows: 75px 1fr;
    }
}

Contect On My Mail :->>> raj.s.webdevloper@gmail.com

or DM in Whatsapp ==>> 8780571581

Hey, charge theme doesn’t have a base.css I’ve tried putting it into styles css tried in custom css nothing seems to work

Okay, put this css and see it’s work or not?

hey thanks for the help i got it fixed now

@Raj-webdesigner do u know if theres a different code i need to use for the browser version the mobile version now is aligned but the browser one is still the same, thank u