Center footer items desktop

Hi all I want to cente rthe circled footer items desktop, but keep the copyright and credit card loglogos wide. my site is https://scntwrld.com

Hi @Luxurymrkt

In the Footer section in your admin> Edit theme, you can try to add this code

@media only screen and (min-width: 769px) {
  .site-footer .grid {
      display: flex !important;
      justify-content: center;
  }
}

Please add this code to Custom CSS in your Theme settings

@media (min-width: 750px) {
.site-footer .grid  {
    margin-left: 0px !important;
    display: flex;
    justify-content: center;
}
}

Hi @Luxurymrkt

In your Shopify Admin go to online store > themes > actions > edit code
Find Asset > theme.css and paste this at the bottow of the file:

@media only screen and (min-width: 769px) {
  .site-footer .grid {
      display: flex !important;
      justify-content: center;
  }
}

hey @Luxurymrkt try this one by follow these steps
Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->before the </body>tag if this code work please do not forget to like and mark it solution

<style>
@media screen and (min-width: 768px) {
.grid {
    display: flex !important;
    justify-content: center !important;
}
}
</style>