Have your say in Community Polls: What was/is your greatest motivation to start your own business?

Center content and decrease spacing between lines in footer

Solved

Center content and decrease spacing between lines in footer

jasminsharp97
Shopify Partner
76 1 30

I'm working on this site: https://maison-rouge-ny.myshopify.com/

The password is: thifis

 

I'm trying to do a few things in my footer that I'm struggling with:

1. I want to center the text in the top line

2. I want to decrease the padding between the menu items in the bottom left

3. I also want to make the "Email" placeholder in the newsletter form all caps

 

Can you help with some or all?

Here's a screenshot showing what I'm trying to do:

Screenshot 2024-11-19 123949.png

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
9039 2160 2664

This is an accepted solution.

Hi @jasminsharp97 

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, 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 screen and (min-width: 750px) {
.grid--4-col-tablet .grid__item { 
    width: 100% !important;
}

.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet {
    flex-direction: column-reverse;
    gap: 0;
}

.footer-block.grid__item.footer-block--menu h2.footer-block__heading {
    margin-bottom: 0;
}

.footer-block__details-content a {
    padding: 0;
}
}

 

  • And Save. 
  • Result:
    Made4uoRibe_0-1732051522717.png

    For the email, you can find that here. 

  • Made4uoRibe_1-1732051561784.pngMade4uoRibe_2-1732051579384.png

    Then change it here. And Save. 

 

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! 

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.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.

View solution in original post

Reply 1 (1)

Made4uo-Ribe
Shopify Partner
9039 2160 2664

This is an accepted solution.

Hi @jasminsharp97 

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, 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 screen and (min-width: 750px) {
.grid--4-col-tablet .grid__item { 
    width: 100% !important;
}

.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet {
    flex-direction: column-reverse;
    gap: 0;
}

.footer-block.grid__item.footer-block--menu h2.footer-block__heading {
    margin-bottom: 0;
}

.footer-block__details-content a {
    padding: 0;
}
}

 

  • And Save. 
  • Result:
    Made4uoRibe_0-1732051522717.png

    For the email, you can find that here. 

  • Made4uoRibe_1-1732051561784.pngMade4uoRibe_2-1732051579384.png

    Then change it here. And Save. 

 

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! 

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.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.