Footer is not aligning correctly and not all on one line, the size of the font is off too

Footer is not aligning correctly and not all on one line, the size of the font is off too

SannaN
Visitor
2 0 0

Screen Shot 2024-04-26 at 10.45.19 AM.png 

As you can see the Address, Support, More and Furniture are all NOT on one line. I would Like for all of those columns to be on one line and for the fonts to be the same size. I then would like the subscribe button to be beside the accent vase we have in the footer. Please help 🙂

Replies 3 (3)

Made4uo-Ribe
Shopify Partner
10038 2387 3013

Hi @SannaN 

Can I take a look in your store, Would you mind to share your store URL? 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.
SannaN
Visitor
2 0 0
Made4uo-Ribe
Shopify Partner
10038 2387 3013

Thanks for the info, do you mean like this? 

Made4uoRibe_0-1714163166091.png

This is the code I use. 

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 (min-width: 749px){
.footer__content-top.page-width {
    max-width: 100%;
    display: flex;
    flex-wrap:nowrap;
}
.footer__content-top .grid {
    row-gap: 0px;
}
.footer-block.grid__item {
    width: 15%;
    flex-grow: 1;
}
.footer__blocks-wrapper.grid {
    width: 85%;
}
.footer-block__details-content.footer-block-image.right {
    text-align: left !important;
}
.footer-block--newsletter {
    flex-direction: column;
}
}

 

And Save. 

 

 

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.