I am trying to center align my title and prices within my collections. I am using the following code within my theme.css
.grid{
text-align:center !important;
}
.price{
display:flex !important;
justify-content:center !important;
}
dl.price {
align-items: center !important;
}
However, It doesn’t appear to be lining up correctly. At first glance it looks like it was correct but if you look at the difference between the three titles and prices, it differs based on how long the title is. How can I fix this?