Footer: How can I make a custom text the same font size as default copy right and store name

Topic summary

Goal: Make a custom footer text (“una marca de…”) the same size as the default copyright/store name after removing “Powered by Shopify.”

Context: The user shared a preview link for inspection. Helpers requested access before suggesting fixes.

Latest update: A CSS fix was proposed. Add this at the end of base.css:
.footer__copyright.caption { font-size: 1.1rem !important; }
This targets the copyright/caption element to enforce a uniform font size so the custom text matches the default footer text.

Status: No confirmation yet that the solution worked; discussion remains open.

Notes: A screenshot of the footer was provided. If the custom text uses different markup/classes than .footer__copyright.caption, selectors may need adjusting.

Summarized with AI on December 17. AI used: gpt-5.

dear community

I’ve removed in the footer the powered by shopify link and added a custom text.

but this custom text “una marca de…:” is not in the same font size as the default copyright and store name.

How can I have it in the same font size as the store name?

see screenshot:

thanks

1 Like

Hi @PhMA ,

Can you kindly share your store link (with the password, if any) with us? We will check it and suggest you a solution if possible.

Have a nice day, my friend!

1 Like

Hello there

Could you kindly provide your store link and password, if required We’ll take a look and suggest a solution if possible.

1 Like

@BSSCommerce-B2B https://cnl4cny1x6x8kr43-61049766108.shopifypreview.com thanks a lot

@devcoders https://cnl4cny1x6x8kr43-61049766108.shopifypreview.com thanks a lot

@devcoders any update :slightly_smiling_face:

@PhMA , try adding this code to the end of base.css file

.footer__copyright.caption {
   font-size: 1.1rem!important;
}
1 Like