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

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 :slightly_smiling_face:

Hi @SannaN

Can I take a look in your store, Would you mind to share your store URL? Thanks!

https://dahrlifestyle.com/

Thanks for the info, do you mean like this?

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!