how to change the font weight and allinmnet in text box in footer as same as the links menu

Hello

how to change the font weight and allignment in text box in footer as same as the links menu
also the policies and address header is not alligned

2 Likes

hey @amorfuz1 share your store URL

Hello @amorfuz1

Thank you for submitting your query to the Shopify community. I’d be happy to assist you. Could you please provide the store URL and password (if it’s password-protected) so I can review and get back to you with an update?

Hi @amorfuz1

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 only screen and (min-width: 749px){
.footer-block__details-content.rte {
    text-align: center !important;
}

.footer-block__details-content>li:not(:last-child) {
        margin-right: 0 !important;
    }
}

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

Hi @amorfuz1

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
.footer-block.grid__item.footer-block--menu ul li a {
    font-size: 18px !important;
    color: white !important;
}
.footer-block.grid__item ul li {
    margin: 0 !important;
}
.footer-block.grid__item > .footer-block__details-content p {
    text-align: center !important;
    font-size: 18px !important;
    color: white !important;
}

Here is the result:

I hope this helps

Best,

Daisy

Welcome! Would you mind hitting ā€˜like’ as well? Thanks!