Why is my footer only taking up half the space?

Solved

Why is my footer only taking up half the space?

Emiway
Trailblazer
263 0 50

I Want My Footer To Be Full Not Half 

URL :- https://be410a-5.myshopify.com/

Screenshot_2023-12-26-20-42-50-51_df198e732186825c8df26e3c5a10d7cd.jpg

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10202 2422 3067

This is an accepted solution.

Hi @Emiway 

Check this one.

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.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:

 

@media only screen and (max-width: 749px){
.footer__item.footer__item--text.is-first {
    max-width: 100% !important;
}
.footer__item-list {
    grid-template-columns: 1fr !important;
}
}

 

And Save. 

Result:

Made4uoRibe_0-1703617086285.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 2 (2)

niraj_patel
Shopify Partner
2391 516 516

Hello @Emiway 

You can add code by following these steps 

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid


<style>

   @media screen and (max-width:767px){
         .footer__item-list {
              grid-template-columns: unset !important;
          }
}

</style>

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

Made4uo-Ribe
Shopify Partner
10202 2422 3067

This is an accepted solution.

Hi @Emiway 

Check this one.

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.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:

 

@media only screen and (max-width: 749px){
.footer__item.footer__item--text.is-first {
    max-width: 100% !important;
}
.footer__item-list {
    grid-template-columns: 1fr !important;
}
}

 

And Save. 

Result:

Made4uoRibe_0-1703617086285.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.