footer alignment

Solved

footer alignment

diana-R
Shopify Partner
19 0 3

08576ae9-0d52-4dd3-8f41-f2eb73217993.png

i need the footer menu align horizontally to the news letter and i also want to decrease the font size on mobile

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
9516 2264 2815

This is an accepted solution.

Hi @diana-R 

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) {
.footer-block__details-content > li:not(:last-child) {
    margin-right: 0;
}
    
ul.footer-block__details-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
}

.footer-block.grid__item.footer-block--menu {
    max-width: 100%;
}

.footer-block__details-content > :first-child .list-menu__item--link {
    padding-top: .5rem;
    }
}

@media screen and (max-width: 749px){
.footer-block.grid__item.footer-block--menu .list-menu__item--link {
    font-size: 20px !important;
}
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1733948716667.pngMade4uoRibe_1-1733948901996.png

     

     

 

 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

Replies 7 (7)

Made4uo-Ribe
Shopify Partner
9516 2264 2815

This is an accepted solution.

Hi @diana-R 

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) {
.footer-block__details-content > li:not(:last-child) {
    margin-right: 0;
}
    
ul.footer-block__details-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
}

.footer-block.grid__item.footer-block--menu {
    max-width: 100%;
}

.footer-block__details-content > :first-child .list-menu__item--link {
    padding-top: .5rem;
    }
}

@media screen and (max-width: 749px){
.footer-block.grid__item.footer-block--menu .list-menu__item--link {
    font-size: 20px !important;
}
}

 

  • And Save.
  • Result:
  • Made4uoRibe_0-1733948716667.pngMade4uoRibe_1-1733948901996.png

     

     

 

 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 ⚙️.
diana-R
Shopify Partner
19 0 3

it works for the font size but doesn't align to left on desktop yet

Made4uo-Ribe
Shopify Partner
9516 2264 2815

Can you add the code so I can see what I need to adjust. 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.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
diana-R
Shopify Partner
19 0 3

i need one more help from you please, on the header i want the country selection size increased and i also want the mobile drop down menu font size decreased

30cd55fc-d328-4399-a165-7c1e2abf59ff.png

Made4uo-Ribe
Shopify Partner
9516 2264 2815

Yeah, sure. 

Add this one on the base.css. Same instuction. 

 

.desktop-localization-wrapper .disclosure .localization-form__select {
    font-size: 2rem;
}

@media only screen and (max-width: 749px){
details[open] > .header__submenu a {
    font-size: 18px !important;
}
}

 

And Save. 

Result:

Made4uoRibe_0-1733956569139.png

Made4uoRibe_1-1733956598425.png

You can adjust the size as per your preference.

 

 

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 ⚙️.
diana-R
Shopify Partner
19 0 3

Are you there??

 

diana-R
Shopify Partner
19 0 3

it works now thanks