Hi,
I think Philippe didn't understand exactly what you wanted 2 years ago.
The problem is not a grid problem either.
It's a matter of CSS to align an element at the bottom of another parent element:
stackoverflow.com/questions/585945/how-t...-a-div-to-the-bottom
For example, such CSS:
.hikashop_products_listing a.hikabtn.hikacart {
position: absolute;
bottom: 0;
left: 20px;
}
But there are other ways, like :
.hikashop_listing_img_title {
display: grid;
height: 420px;
}
Or with flex:
.hikashop_listing_img_title {
display: flex;
flex-direction: column;
height: 420px;
}
.hikashop_listing_img_title a.hikabtn.hikacart {
margin-top: auto;
}
These are basically taken from propositions on this link.
This would have been the same 2 years ago on Joomla 3.