Align content in footer to all be the same size and height?

Solved

Align content in footer to all be the same size and height?

jasminsharp97
Shopify Partner
101 1 33

I'm working with the lorenza theme in my footer and I'm trying to get all the font to be the same size, as well as get everything to align to the top. 

This is what it currently looks like

Screenshot 2024-09-16 at 2.26.50 PM.png

I want everything to be the same size as the "NEWSLETTER" text, and I want everything aligned at the top with that same header as well. How do I achieve that?

 

Store: https://66cdcb-86.myshopify.com/

Password: chohme

Accepted Solution (1)
Made4uo-Ribe
Shopify Partner
10096 2398 3031

This is an accepted solution.

Yes, I can see it now. Add this code wherever folder you paste the font-size.

 

.footer__text.rte h4:first-child {
    margin-top: 0 !important;
    line-height: 1em;
}

 

And save. 

Result:

Made4uoRibe_0-1726517279157.png

 

 

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.

View solution in original post

Replies 4 (4)

Made4uo-Ribe
Shopify Partner
10096 2398 3031

Hi @jasminsharp97 

It already align on the top. 

For the font-size do you mean like this? 

Made4uoRibe_0-1726515950969.png

if it ism check this one. 

From you Admin page, go to Online Store > Themes

Select the theme you want to edit

Under the Asset folder, open the main.css(base.css, style.css or theme.css)

Then place the code below at the very bottom of the file.

 

.footer__text.rte h4, .footer__text.rte p {
    font-size: var(--font-size-body-extra-small);
}

 

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.
jasminsharp97
Shopify Partner
101 1 33

Thanks! That solved the font issue. The footer items I was testing headers, but without them things aren't aligned - you can see that now. Can you help me figure it out now?

Made4uo-Ribe
Shopify Partner
10096 2398 3031

This is an accepted solution.

Yes, I can see it now. Add this code wherever folder you paste the font-size.

 

.footer__text.rte h4:first-child {
    margin-top: 0 !important;
    line-height: 1em;
}

 

And save. 

Result:

Made4uoRibe_0-1726517279157.png

 

 

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.
jasminsharp97
Shopify Partner
101 1 33

Thank you so much that solved it!