By modifying the ".product_grid_display .product_grid_item" class in my Gold Cart plugin grid_view.css:
.product_grid_display .product_grid_item {
margin:5px;
border:0px solid #fff;
padding:5px;
float:left;
text-align:center;
position:relative;
width: 165px;
min-height:270px;
height:auto !important;
height: 270px;
}
I got same height and same width, perfect (might be helpful to others). But now I would like to align the "Add to cart" button to the bottom of its box.
The CSS for the button:
input.wpsc_buy_button {
float: left;
}
Q: how do I make that button float left and "bottom"

Thanks in advance