How can I enlarge a footer text box for full width display?

Hey,

I want to increase the size of the text box so that the text takes the full width of the footer. Currently its as shown in the image below.

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

HI @randomchikibum ,

Im not sure if what you mean about. If not like this then let me know.

  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-block.grid__item.scroll-trigger.animate--slide-in {
    max-width: 100%;
}

Result:

I hope it help.

Hey,

I exactly want what you suggested. However, I’ve tried your solution but it’s not working.

Try this one.

.footer-block.grid__item.scroll-trigger.animate--slide-in {
    max-width: 100% !important;
}

Still not working