Center disclaimer on copyright footer - CRAFT theme

@TFN205

Hi,

I checked your store and found that you used @suyash1 solution and it looks okay.

However, I think you will need to adjust the settings a bit.

Please change the code as below.

@media screen and (min-width: 768px) {
  .footer .grid__item {
    margin: 0 auto;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
 .footer .grid__item {
    margin-left: 10px;
    white-space: nowrap;
  }
}

Please check your current disclaimer in both PC & Mobile.


*Revised

While you were make the disclaimer, you were using the grid__item class which will affect other settings. I like to suggest you to change the class name as your own as below.

 
        <small> 
            * Some remote locations do not qualify for free shipping. *
        </small>
      

And then, add the class settings in CSS file as below.

.talesma-consent {
    width: 100%;
    text-align: center;
}

This will make looking better on both PC & Mobile.

Hope it helps.

Thanks.