Hi everyone,
I added a comparison app in my store, but my problem is the alignment of the tabs below my product cards. Is there a way to align these tabs? See photo for reference
Store Preview Link: https://bgtz765ufz7gbbgl-13830324282.shopifypreview.com
Hi @IntechCarl ,
Go to Online Store > Themes > Actions > Edit Code > base.css
Add below code at the bottom of base.css file
.card__content .card__information {
display: flex;
flex-direction: column;
}
.card__content .card-information {
height: 100%;
}
1 Like