Footer Style : Menu Column Spaces

Solved

Footer Style : Menu Column Spaces

SiliconValley
Tourist
8 0 1

Hi,
I am currently having 'trade' theme where I am facing issue with the space of Footer menus.
I want spacing be reduced in between menu columns and keep 4 columns(menu) instead of 3 in one row.
PFA

SiliconValley_0-1721021824777.png

Please help me with solution.
URL - https://734bb6-cf.myshopify.com/

Accepted Solutions (3)

Moeed
Shopify Partner
6980 1883 2300

This is an accepted solution.

Hey @SiliconValley 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (min-width: 768px) {
.grid--3-col-tablet .grid__item {
        width: calc(20.33% - var(--grid-desktop-horizontal-spacing)* 2 / 3) !important;
}
}
</style>

RESULT:

Moeed_0-1721022344846.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

niraj_patel
Shopify Partner
2391 516 515

This is an accepted solution.

Hello @SiliconValley 

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 (min-width: 768px) {
  .grid--3-col-tablet .grid__item {
      width: calc(21.33% - var(--grid-desktop-horizontal-spacing)* 2 / 3) !important;
  }
 }
</style>

techlyser_web_0-1720979550091.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

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

View solution in original post

GTLOfficial
Shopify Partner
785 164 173

This is an accepted solution.

Hello @SiliconValley 
Go to online store ---------> themes --------------> actions ------> edit code------->base.css---line number 936
search this code and delete.

@media screen and (min-width: 750px) {
.grid--3-col-tablet .grid__item {
width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
}
}

the result will be
1.png


If this was helpful, hit the like button and mark the job as completed.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh

View solution in original post

Replies 3 (3)

Moeed
Shopify Partner
6980 1883 2300

This is an accepted solution.

Hey @SiliconValley 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (min-width: 768px) {
.grid--3-col-tablet .grid__item {
        width: calc(20.33% - var(--grid-desktop-horizontal-spacing)* 2 / 3) !important;
}
}
</style>

RESULT:

Moeed_0-1721022344846.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


niraj_patel
Shopify Partner
2391 516 515

This is an accepted solution.

Hello @SiliconValley 

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 (min-width: 768px) {
  .grid--3-col-tablet .grid__item {
      width: calc(21.33% - var(--grid-desktop-horizontal-spacing)* 2 / 3) !important;
  }
 }
</style>

techlyser_web_0-1720979550091.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

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

GTLOfficial
Shopify Partner
785 164 173

This is an accepted solution.

Hello @SiliconValley 
Go to online store ---------> themes --------------> actions ------> edit code------->base.css---line number 936
search this code and delete.

@media screen and (min-width: 750px) {
.grid--3-col-tablet .grid__item {
width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
}
}

the result will be
1.png


If this was helpful, hit the like button and mark the job as completed.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh