Looking to center the foot text in Dawn 12.0 with code. I’ve tried a few options, but nothing seems to work.
Thanks in advance.
A user seeks to center footer text blocks in Shopify’s Dawn 12.0 theme using custom code. After sharing their store URL and password, they receive a CSS solution that involves:
Implementation steps:
.grid and .grid--4-col-tablet .grid__item elementsKey CSS properties:
justify-content: space-evenly !important on grid containersflex-grow: 0 !important and width: auto !important on grid itemsResolution: The solution successfully centered the footer text blocks. The user confirmed it worked and expressed appreciation.
Looking to center the foot text in Dawn 12.0 with code. I’ve tried a few options, but nothing seems to work.
Thanks in advance.
Hi @crosbyaudio
Would you mind to share your Store URL website? with password if its unpublish. Thanks!
Updated in the original post.
Thanks for the info, Check this one.
.grid__item {
flex-grow: 0 !important;
}
.grid {
justify-content: space-evenly !important;
}
@media screen and (min-width: 750px){
.grid--4-col-tablet .grid__item {
width: auto !important;
}
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
That worked. Much appreciated.
Welcome! Please dont forget to LIKES, Thanks!