Move the disclaimer text below Shopify copyrights

Hello,

I want to move the the footer text below the shopify copyrights text. Image shows how it is as of now.

Store link: https://0bc922.myshopify.com/

Hi @randomchikibum ,

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
.footer__content-top.page-width {
    padding-bottom: 0px;
}
.footer__content-bottom.scroll-trigger.animate--slide-in {
    padding-top: 0px;
    border-top: none;
}

Result:

I hope it help.