Can I stack and centre footer items on my website?

Hi,

I would like to stack the refund, terms of service, privacy policy above my company name and centre it all can this be done?

Regards

Willose

Hi @Willose ,

Can you please provide preview url of the store?

Thank you

password?

Hi

Thank you for your response.

www.postcodeapparel.com

Password: Halogood

regards

Willose

Add this code in your base.css file:

.footer__copyright.caption {
  margin-left: auto !important;
  margin-right: auto !important;
}

Result:

1 Like

That has centred all items. I would like to stack them with 2024 Postcode Apparel being underneath everything else. is this possible?

Of course! :ok_hand:

(leave the above code added too)

Add this code in your base.css file:

@media (min-width: 750px) {
  ul.policies.list-unstyled {
    position: absolute !important;
    top: 100%;
  }

  .footer__copyright.caption {
    display: flex !important;
    justify-content: center;
  }
}

Result:

1 Like