Hi,
I am having trouble getting the vendor field to be aligned on the collection and search pages (Dawn theme), does anyone know how?
Here is a preview:
https://vfnvtb0lpzy1bp6o-19218055.shopifypreview.com
Cheers!
Hi,
I am having trouble getting the vendor field to be aligned on the collection and search pages (Dawn theme), does anyone know how?
Here is a preview:
https://vfnvtb0lpzy1bp6o-19218055.shopifypreview.com
Cheers!
Hi @RemG
1: Online store > themes > Actions > Edit code > Assets > theme-styles.css
2: paste code at last
.style_product_grid_3 .product-item .product-bottom .wrapper-vendor {
justify-content: center;
}
Hi @RemG ,
Go to Online Store > Themes > Actions > Edit code > Assets> base.css, at this code at the bottom of file
.card-information {
text-align: center;
}
Thanks for the reply, there is no theme-styles.css on the Dawn theme?
You must add code in base.css in Dawn theme
Sorry @Dan-From-Ryviu I was meaning to reply to @Kani earlier - have have tried your solution with the code in base.css with no luck.
Hi @RemG
then try to add this at last of component-card.css
.card-information>* {
text-align: center;
}
@Kani thanks so much, that worked!